kornelski / mediancut-posterizer

Lossy PNG compressor for RGBA PNGs. Has two modes: lossy averaging filter (blurizer) that denoises the image and optimal posterization using Median Cut quantization to reduce number of unique colors in the image with minimal visual distortion
https://pngmini.com
236 stars 32 forks source link

Fix colorError row rotation #10

Closed agprimatic closed 9 years ago

agprimatic commented 9 years ago

In the original, colorError[0], colorError[1], and colorError[2] would end up all pointing to the same row after the first row. With the change, the buffers are rotated so that row1 becomes row0, row2 becomes row1, and row0 becomes row2.

kornelski commented 9 years ago

Good catch, thanks.