Module: Rixmap::Format::PCX
- Defined in:
- lib/rixmap/format/pcx.rb
Overview
PCX画像形式用入出力実装モジュール.
Defined Under Namespace
Classes: PCXFileHeader, PCXImageIO, RLE
Constant Summary collapse
- FILE_SIGNATURE =
PCXファイルシグネチャバイト
0x0A
- PALETTE_SEPARATOR =
パレットセパレータバイト
0x0C
- FORMAT_VERSION_25 =
Version 2.5 with fixed EGA Palette information
0x00- FORMAT_VERSION_28_PLT =
Version 2.8 with modifiable EGA palette information
0x02- FORMAT_VERSION_28_NOPLT =
Version 2.8 without palette information
0x03- FORMAT_VERSION_PC_WINDOWS =
PC Paintbrush for Windows
0x04- FORMAT_VERSION_30 =
Version 3.0
0x05- COLORTYPE_NORMAL =
RGB or パレット形式定数
0x01- COLORTYPE_GRAYSCALE =
グレースケール形式
0x02- ENCODINGTYPE_NONE =
無圧縮形式
0x00- ENCODINGTYPE_RLE =
RLE圧縮
0x01