Module: Rixmap
- Defined in:
- src/rixmapcore.cxx,
src/rixmapcore.cxx,
lib/rixmap.rb,
lib/rixmap/image.rb,
lib/rixmap/imageio.rb,
lib/rixmap/version.rb,
lib/rixmap/format/bmp.rb,
lib/rixmap/format/pcx.rb,
lib/rixmap/format/png.rb,
lib/rixmap/format/xpm.rb,
lib/rixmap/format/png/chunk.rb,
lib/rixmap/format/png/imageio.rb
Overview
Rixmapライブラリルートモジュール.
Defined Under Namespace
Modules: Deformer, Format, ImageIO Classes: Binary, Color, Image, Mode, Palette
Constant Summary collapse
- INDEXED =
インデックスカラー形式定数
RixmapModePool::Get(Rixmap::Mode::INDEXED)
- GRAYSCALE =
グレースケール形式定数
RixmapModePool::Get(Rixmap::Mode::GRAYSCALE)
- GRAYALPHA =
透明度付グレースケール形式定数
RixmapModePool::Get(Rixmap::Mode::GRAYALPHA)
- RGB =
RGBカラー形式定数
RixmapModePool::Get(Rixmap::Mode::RGB)
- RGBA =
透明度付RGBカラー形式定数
RixmapModePool::Get(Rixmap::Mode::RGBA)
- HORIZONTAL =
水平方向への反転
INT2FIX(static_cast<int>(Rixmap::FlipDirection::HORIZONTAL))
- VERTICAL =
垂直方向への反転
INT2FIX(static_cast<int>(Rixmap::FlipDirection::VERTICAL))
- DIAGONAL =
横と縦に同時に反転
INT2FIX(static_cast<int>(Rixmap::FlipDirection::DIAGONAL))
- VERSION_MAJOR =
メジャーバージョン番号
0
- VERSION_MINOR =
マイナーバージョン番号
3
- VERSION_PATCH =
バグ修正回数
1
- VERSION_NUMBER =
バージョン番号 (数値表現)
(VERSION_MAJOR << 16) | (VERSION_MINOR << 8) | VERSION_PATCH
- VERSION =
バージョン番号 (文字列)
"#{VERSION_MAJOR}.#{VERSION_MINOR}.#{VERSION_PATCH}"