picojpeg
picojpeg copied to clipboard
picojpeg: Tiny JPEG decoder for 8/16-bit microcontrollers
The fix in consistent with other functions. The problem was corupted images cause by the compiler inlining code and not putting post-inrement in correct place at end of inline code.
Hello, I was wondering if someone could provide me with further explanation of the error codes, the ones at the top of picojpeg.h. Specifically, me and my classmates have run...
I want to decode a JPEG with the `reduce` mode on (get only DC values). How do I consume those pixels? I want to store them into a new array.
picojpeg does not support progressive JPEGs at the moment. I guess there are no plans to support it according to this comment https://github.com/richgel999/picojpeg/blob/master/picojpeg.c#L898-L899, am I right? > Progressive JPEG -...
Thank you for Picojpeg. I found it embeded in Bodmer's JPEGDecoder https://github.com/Bodmer/JPEGDecoder/blob/master/src/picojpeg.h and used to display images on a 135x240 pixel OLED display. I created a 10x10 pixel JPEG encoded...