diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2023-08-31 08:45:10 -0700 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2023-08-31 08:45:10 -0700 |
| commit | c1159e5f8434ffb4e98c950f45cd682d73933534 (patch) | |
| tree | 9c6b92f80316caa59e2652a4447d89a24e5d2c68 /go.mod | |
| parent | Load terminal size once at the beginning. (diff) | |
| download | imgutil-c1159e5f8434ffb4e98c950f45cd682d73933534.tar.zst | |
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.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |
