Hello!
I (may) understand what he asks.
In some graphics programs, there is a way to export the graphic to C array.
BUT: if you are using a 1 bit display, then you have to do it yourself. That's
what I did when I used smaller monochrome LCDs.
One way to do it:
- Convert your image to bmp
- Export it as a C array
At that point, depending on the C format you get, you may have 1 pixel per byte,
starting top left, ending bottom right.
Now you have to pack pixel 1 of line1, pixel 1 of line 2 .... pixel 1 of line 8 to 1 byte.
Then pixel 2 of line 1, pixel 2 of line 2 ..... pixel 2 of line 8 to 1 byte, etc...
And you can end up with an array directly writable to a 1 bit LCD, 8 pixels at a time.
Have fun, although it's a pain where you know.
Dora.