Skip to content

Commit

Permalink
resources/images: Fix 2 animated GIF resize issues
Browse files Browse the repository at this point in the history
* Fix resize of animated GIF when target != GIF
* Avoid processing all GIF frames if targetFormat != GIF

Fixes #10354
  • Loading branch information
bep committed Oct 4, 2022
1 parent 0addb30 commit 3a9cb7b
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 15 deletions.
4 changes: 3 additions & 1 deletion resources/image_test.go
Expand Up @@ -620,6 +620,8 @@ func TestImageOperationsGolden(t *testing.T) {

// Note, if you're enabling this on a MacOS M1 (ARM) you need to run the test with GOARCH=amd64.
// GOARCH=amd64 go test -timeout 30s -run "^TestImageOperationsGolden$" ./resources -v
// The above will print out a folder.
// Replace testdata/golden with resources/_gen/images in that folder.
devMode := false

testImages := []string{"sunset.jpg", "gohugoio8.png", "gohugoio24.png"}
Expand Down Expand Up @@ -663,7 +665,7 @@ func TestImageOperationsGolden(t *testing.T) {

// Animated GIF
orig = fetchImageForSpec(spec, c, "giphy.gif")
for _, resizeSpec := range []string{"200x", "512x"} {
for _, resizeSpec := range []string{"200x", "512x", "100x jpg"} {
resized, err := orig.Resize(resizeSpec)
c.Assert(err, qt.IsNil)
rel := resized.RelPermalink()
Expand Down
1 change: 1 addition & 0 deletions resources/images/config.go
Expand Up @@ -60,6 +60,7 @@ var (
imageFormatsVersions = map[Format]int{
PNG: 3, // Fix transparency issue with 32 bit images.
WEBP: 2, // Fix transparency issue with 32 bit images.
GIF: 1, // Fix resize issue with animated GIFs when target != GIF.
}

// Increment to mark all processed images as stale. Only use when absolutely needed.
Expand Down
37 changes: 23 additions & 14 deletions resources/images/image.go
Expand Up @@ -247,7 +247,7 @@ func (p *ImageProcessor) ApplyFiltersFromConfig(src image.Image, conf ImageConfi
return nil, fmt.Errorf("unsupported action: %q", conf.Action)
}

img, err := p.Filter(src, filters...)
img, err := p.doFilter(src, conf.TargetFormat, filters...)
if err != nil {
return nil, err
}
Expand All @@ -256,25 +256,34 @@ func (p *ImageProcessor) ApplyFiltersFromConfig(src image.Image, conf ImageConfi
}

func (p *ImageProcessor) Filter(src image.Image, filters ...gift.Filter) (image.Image, error) {
return p.doFilter(src, 0, filters...)
}

func (p *ImageProcessor) doFilter(src image.Image, targetFormat Format, filters ...gift.Filter) (image.Image, error) {

filter := gift.New(filters...)

if giph, ok := src.(Giphy); ok && len(giph.GIF().Image) > 1 {
if giph, ok := src.(Giphy); ok {
g := giph.GIF()
var bounds image.Rectangle
firstFrame := g.Image[0]
tmp := image.NewNRGBA(firstFrame.Bounds())
for i := range g.Image {
gift.New().DrawAt(tmp, g.Image[i], g.Image[i].Bounds().Min, gift.OverOperator)
bounds = filter.Bounds(tmp.Bounds())
dst := image.NewPaletted(bounds, g.Image[i].Palette)
filter.Draw(dst, tmp)
g.Image[i] = dst
if len(g.Image) < 2 || (targetFormat == 0 || targetFormat != GIF) {
src = g.Image[0]
} else {
var bounds image.Rectangle
firstFrame := g.Image[0]
tmp := image.NewNRGBA(firstFrame.Bounds())
for i := range g.Image {
gift.New().DrawAt(tmp, g.Image[i], g.Image[i].Bounds().Min, gift.OverOperator)
bounds = filter.Bounds(tmp.Bounds())
dst := image.NewPaletted(bounds, g.Image[i].Palette)
filter.Draw(dst, tmp)
g.Image[i] = dst
}
g.Config.Width = bounds.Dx()
g.Config.Height = bounds.Dy()

return giph, nil
}
g.Config.Width = bounds.Dx()
g.Config.Height = bounds.Dy()

return giph, nil
}

bounds := filter.Bounds(src.Bounds())
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3a9cb7b

Please sign in to comment.