
Definition at line 56 of file bitmap.hpp.
Public Types | |
| enum | compression { BMP_COMPRESSION_RGB = 0, BMP_COMPRESSION_RLE8 = 1, BMP_COMPRESSION_RLE4 = 2, BMP_COMPRESSION_BITFIELDS = 3 } |
| Compression mode. More... | |
| typedef color_palette< pixel32 > | color_palette_type |
| The type of the color palette for low color image files. | |
Classes | |
| struct | header |
| Header of a bitmap file. More... | |
Compression mode.
Definition at line 63 of file bitmap.hpp.
00064 { 00065 BMP_COMPRESSION_RGB = 0, 00066 BMP_COMPRESSION_RLE8 = 1, 00067 BMP_COMPRESSION_RLE4 = 2, 00068 BMP_COMPRESSION_BITFIELDS = 3 00069 };
1.5.5