Hello everybody.
I'm successfully able to show an ARGB4 image onto one page (FT812 custom embedded system).
But randomly (:'(), when the image size is roughly greater than 3Kb, sometimes it is displayed corrupted.
In attachment you can see two screen-shot (the good and the corrupted) plus the original asset for your further checking.
Please can you help me to solve this issue?
I suspect an not optimal PNG settings.
Thanks in advance.
The FIF0 is 4k so you might be over running the buffer. Make sure that your display list commands do not go over 4k
The fix is to send the image data in chunks (256 or 512 bytes) instead one single transmission.
Thank you to everybody.
how do you get ARGB4 bitmap ? through PNG decoding from cmd_loadimage at run-time or pre-processing PNG into ARGB4 through EAB?
I get ARGB4 pre-processing PNG into ARGB4 through EAB.