Read bitmap file into structure
»This is how you manually load a .BMP file The bitmap file format: Bitmap file header Bitmap info header Palette data Bitmap data So on with the code part. This is our struct we need to create to hold the bitmap file header. #pragma pack(push, 1) typedef struct tagBITMAPFILEHEADER { WORD bfType; //specifies the file … Read more