Tool class used for defining the structures of the datas stored in a bitmap file. More...
Classes | |
struct | header |
Header of a bitmap file. More... | |
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 < rgba_pixel_8 > | color_palette_type |
The type of the color palette for low color image files. |
Tool class used for defining the structures of the datas stored in a bitmap file.
Definition at line 56 of file bitmap.hpp.
The type of the color palette for low color image files.
Definition at line 60 of file bitmap.hpp.
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 };