gopngquant: fix issue with non-square input images

This commit is contained in:
mappu 2017-03-03 18:39:14 +13:00
parent 5d5f02ba1c
commit 301cec7b07
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ func Rgb8PaletteToGoImage(w, h int, rgb8data []byte, pal color.Palette) image.Im
for y := 0; y < h; y += 1 {
for x := 0; x < w; x += 1 {
ret.SetColorIndex(x, y, rgb8data[y*h+x])
ret.SetColorIndex(x, y, rgb8data[y*w+x])
}
}