schmouk / CppBMPLoader

An exhaustive BMP Loader, MIT-licensed, implemented for c11 and c20
MIT License
0 stars 0 forks source link

implement class `BMPLoader` #13

Closed schmouk closed 1 month ago

schmouk commented 2 months ago

This class embeds file and info headers retrieving, maybe RLE decoding, and implements method load() from file. It provides access to the decoded content, 4 bytes RGBA per pixel, oriented as asked for with the first line of the resulting image at top or at bottom line of returned data.

schmouk commented 1 month ago

Completed via completion of #24