kikuchan/pngle

PNG in spiffs

Closed this issue · 2 comments

hello,
nice work!
Could I store PNG images in SPIFFS and then use this library to display them?
Could you give me an example?
Thank you very much

Yes, you can display PNG images in SPIFFS, but you need to write a code to do so.

If you're using M5Stack series, the easiest way to use their library.
https://github.com/m5stack/M5Stack/blob/master/examples/Advanced/Display/png_spiffs/png_spiffs.ino

You can also find how to implement drawPngFile:
https://github.com/m5stack/M5Stack/blob/master/src/M5Display.cpp#L504

Yes, you can display PNG images in SPIFFS, but you need to write a code to do so.

If you're using M5Stack series, the easiest way to use their library. https://github.com/m5stack/M5Stack/blob/master/examples/Advanced/Display/png_spiffs/png_spiffs.ino

You can also find how to implement drawPngFile: https://github.com/m5stack/M5Stack/blob/master/src/M5Display.cpp#L504

Received,Thank you very much.