From c1159e5f8434ffb4e98c950f45cd682d73933534 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Thu, 31 Aug 2023 08:45:10 -0700 Subject: Use the draw package for resizing the image. This allows me to use the approximate bilinear interpolation, which looks a lot better than my brain-dead nearest-neighbor. --- go.mod | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index f2b8f47..94d1016 100644 --- a/go.mod +++ b/go.mod @@ -2,6 +2,9 @@ module icat go 1.20 -require golang.org/x/term v0.11.0 +require ( + golang.org/x/image v0.11.0 + golang.org/x/term v0.11.0 +) require golang.org/x/sys v0.11.0 // indirect -- cgit v1.3.1