1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-24 08:12:38 +02:00

Remove LineCache diring animation images processing (issue is fixed in vips 8.15.2)

This commit is contained in:
DarthSim 2024-03-22 17:01:29 +03:00
parent ed912eaed2
commit 59ca483aa7

View File

@ -144,12 +144,6 @@ func transformAnimated(ctx context.Context, img *vips.Image, po *options.Process
}
}()
// Splitting and joining back large WebPs may cause segfault.
// Caching page region cures this
if err = img.LineCache(frameHeight); err != nil {
return err
}
for i := 0; i < framesCount; i++ {
frame := new(vips.Image)