robotgo/bitmap/goBitmap.h
2016-10-06 18:41:37 +08:00

11 lines
144 B
C++

class BMP
{
public:
size_t width;
size_t height;
size_t byteWidth;
uint8_t bitsPerPixel;
uint8_t bytesPerPixel;
uint8_t *image;
};