chore: use better scaling kernel
/ publish (push) Successful in 3m45s

This commit is contained in:
2026-03-09 08:40:05 +01:00
parent 1310b7b243
commit 0255ae6165
2 changed files with 1 additions and 7 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ func scale(src image.Image, options Options) image.Image {
)
// Resize:
draw.BiLinear.Scale(dst, dst.Rect, src, src.Bounds(), draw.Over, nil)
draw.ApproxBiLinear.Scale(dst, dst.Rect, src, src.Bounds(), draw.Over, nil)
// Encode to `output`:
return dst