toojpeg icon indicating copy to clipboard operation
toojpeg copied to clipboard

A JPEG encoder in a single C++ file

Results 6 toojpeg issues
Sort by recently updated
recently updated
newest added

How to do it if I want to write it in class variable? There is conflict with class member and WRITE_ONE_BYTE.

Hi, Thank you for your library. I needed to create a JPEG image from an YUVU image in memory, directly, without the overhead of transcoding in RGB back and forth....

Do you have any plans to add stride support for the input buffer?

Hello, Please I need to use your repo and use lena.PNG as input image, so I read the image in this way, but this not correct how can read the...

allow passing data void* to the callback, so the destination can be passed in. example: ``` std::vector dest; TooJpeg::writeJpeg( [](unsigned char byte, void* data) -> void { std::vector& dest =...

It would be nice to add a CMakeLists to the library in order to simplify the use of this lib with bigger projects.