Bodmer / TJpg_Decoder

Jpeg decoder library based on Tiny JPEG Decompressor
Other
227 stars 43 forks source link

Question about ESP32 RAM buffer #2

Closed JPMJPM closed 4 years ago

JPMJPM commented 4 years ago

Hi,

Do you think it is possible to decode and display a JPG image located in a ESP32 RAM buffer ?.

Regards.

Bodmer commented 4 years ago

Yes, you can create an array and save the image into that. Perhaps downloaded from the web. Make sure the array is big enough to hold the entire jpeg.

This zip file posted by a user may be of interest.

JPMJPM commented 4 years ago

Ok, thanks.