Pure Elixir PNG decoder using :zlib.
Supports 8-bit RGB (color type 2) and RGBA (color type 6) PNGs.
Returns pixel data as a flat list of {r, g, b} tuples in row-major order.
Summary
Types
@type decoded() :: %{width: pos_integer(), height: pos_integer(), pixels: [pixel()]}