Skip to content

Commit

Permalink
resource: Use Floyd-Steinberg dithering for PNGs
Browse files Browse the repository at this point in the history
  • Loading branch information
bep committed Feb 26, 2018
1 parent 9f740b3 commit 9e26f81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions resource/image.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ var (
// Add or increment if changes to an image format's processing requires
// re-generation.
imageFormatsVersions = map[imaging.Format]int{
imaging.PNG: 1, // 1: Add proper palette handling
imaging.PNG: 2, // Floyd Steinberg dithering
}

// Increment to mark all processed images as stale. Only use when absolutely needed.
Expand Down Expand Up @@ -266,7 +266,7 @@ func (i *Image) doWithImageConfig(action, spec string, f func(src image.Image, c
// Apply the colour palette from the source
if paletted, ok := src.(*image.Paletted); ok {
tmp := image.NewPaletted(converted.Bounds(), paletted.Palette)
draw.Src.Draw(tmp, tmp.Bounds(), converted, converted.Bounds().Min)
draw.FloydSteinberg.Draw(tmp, tmp.Bounds(), converted, converted.Bounds().Min)
converted = tmp
}
}
Expand Down
2 changes: 1 addition & 1 deletion resource/image_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ func TestImageResize8BitPNG(t *testing.T) {
resized, err := image.Resize("800x")
assert.NoError(err)
assert.Equal(imaging.PNG, resized.format)
assert.Equal("/a/gohugoio_hu0e1b9e4a4be4d6f86c7b37b9ccce3fbc_73886_800x0_resize_linear_1.png", resized.RelPermalink())
assert.Equal("/a/gohugoio_hu0e1b9e4a4be4d6f86c7b37b9ccce3fbc_73886_800x0_resize_linear_2.png", resized.RelPermalink())
assert.Equal(800, resized.Width())

}
Expand Down

0 comments on commit 9e26f81

Please sign in to comment.