pimoroni / pimoroni-pico

Libraries and examples to support Pimoroni Pico add-ons in C++ and MicroPython.
https://shop.pimoroni.com/collections/pico
MIT License
1.23k stars 474 forks source link

PNGdec: Add support for palette offsets and greyscale copy mode #919

Closed Gadgetoid closed 2 months ago

Gadgetoid commented 3 months ago

As if PNG rendering isn't already complex enough, I dreamed up "palette_offset" as an argument that would change a "COPY" mode PNG's pixel value by a certain offset value.

Eg: if you have a 4bit (16 colour) greyscale or indexed PNG you could copy it verbatim into the PicoGraphics buffer (ignoring the actual colour values). Normally this happens from palette index 0, so you could never swap out the palette to handle artwork variations.

Using an offset, - eg let's say we offset by 16- it's possible to render a PNG in "COPY" mode, offsetting each palette index by 16. Now in 8-bit palette mode we can draw up to sixteen copies of our PNG and - via palette manipulation - give them all distinct colours.

Yes, even trying to explain this is complicated...