How do I read the bytes from a bmp file using C?
|
Here's a general-purpose skeleton to just load a binary file, and return a pointer to the first byte. This boils down to "fopen() followed by fread()", but is a ... bit more verbose. There's no error-handling, although errors are checked for and I believe this code to be correct. This code will reject empty files (which, by definition, don't contain any data to load anyway).
You can easily add the code to parse the BMP header to this, using links provided in other answers. |
|||
|
|
|
fopen followed by fread |
|||||||
|
|
Use fopen and fread as suggested by others. For the format of the bmp header take a look here |
|||
|
|
|
ImageMagick supports BMP. You can use either of two C APIs, the low-level MagickCore or the more high level Magick Wand. |
|||
|
|
|
make sure this file is not compressed using RLE method. otherwise, you'll have to read from the file and dump into a buffer to reconstruct the image, after reading the header file and knowing it's dimensions. |
|||
|
|