struct Core::BMPHandler::BitmapInfoHeader

#include <corebmphandler.h>

struct BitmapInfoHeader
{
    // fields

    uint32 size;
    int32 width;
    int32 height;
    uint16 planes;
    uint16 bitCount;
    uint32 compression;
    uint32 sizeImage;
    int32 xPixelsPerMeter;
    int32 yPixelsPerMeter;
    uint32 colorsUsed;
    uint32 colorsImportant;

    // methods

    uint32 calcSize() const;
    uint32 getSizeSafe() const;
};