How to save a bitmap
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
:confused:I've got an array containing the bitmap image. How do I save it to make a .bmp file? Gaurav Gumber
The term "array containing the bitmap image" is very unspecific. -Does this bitmap array contains the pixel values only? Or contains the bitmap header as well? -If it doesn't containg the header, so do you know the it's width and height and what color depth is used? -Is the array bytes aligned to DWORD, i.e. padding zeros is added to the end of each horizontal scan to be divisible by 4? Give me these details and I could help you.