aboutsummaryrefslogtreecommitdiffstats
path: root/icat.go
diff options
context:
space:
mode:
Diffstat (limited to 'icat.go')
-rw-r--r--icat.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/icat.go b/icat.go
index 15f10d1..01f0400 100644
--- a/icat.go
+++ b/icat.go
@@ -47,7 +47,7 @@ func printImg(filename string, cols, lines int) error {
}
dst := image.NewRGBA(image.Rect(0, 0, cols, 2*lines))
- draw.CatmullRom.Scale(dst, dst.Bounds(), img, img.Bounds(), draw.Over, nil)
+ draw.BiLinear.Scale(dst, dst.Bounds(), img, img.Bounds(), draw.Over, nil)
for y := 0; y < 2*lines; y += 2 {
for x := 0; x < cols; x++ {