-
Hello Gang, I am trying to get a JPEG image to a display of an ESP32 Wrover based platform (The WT32-SC01) on the M5Stack platform the command used is ;
but can't find the equivalent of this command in TFT_eSPI lib? here is a partial example of the jpg image converted to HEX;
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@VE2DX generally you should ask in these questions in the TFT_eSPI GitHub forum not here unless you have an issue with GUIslice API. You need to useTFT_eSPI along with TFT_eFEX library and a Jpeg decoder lib. Google GitHub TFT_eFEX and you will find it and it has examples. Note that GUIslice and the GUIslice Builder (my project)handles the details for you. My utility GUIslice_Image2C will convert jpegs to C arrays in a format GUIslice can use. Paul-- |
Beta Was this translation helpful? Give feedback.
-
Actually, as I think about it further there is a sample that is called TFT_flash_jpg.ino that only needs the Jpeg decoder. |
Beta Was this translation helpful? Give feedback.
@VE2DX generally you should ask in these questions in the TFT_eSPI GitHub forum not here unless you have an issue with GUIslice API.
That said the reason you haven't found how to do this is simple. TFT_eSPI doesn't have calls for this.
You need to useTFT_eSPI along with TFT_eFEX library and a Jpeg decoder lib.
Google GitHub TFT_eFEX and you will find it and it has examples.
Note that GUIslice and the GUIslice Builder (my project)handles the details for you. My utility GUIslice_Image2C will convert jpegs to C arrays in a format GUIslice can use.
Paul--