EasyBMP
EasyBMP copied to clipboard
Fork of http://easybmp.sourceforge.net
I saw the page https://bytes.com/topic/c/answers/580148-bitmap-hexadecimal-conversion It told me that if I use cout
need to manually add `#include ` in EasyBMP.cpp,otherwise the compiler will throw > error: 'unique_ptr' was not declared in this scope
BMP files with a negative height imply that the origin is top left so we need to swap all rows.
When compiling EasyBMP, the following error is thrown on line 771 of `EasyBMP.cpp`: `error: ‘unique_ptr’ was not declared in this scope` For reference, here is line 771: ```cpp unique_ptr Buffer(new...