aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2025-03-17 20:57:00 -0700
committerRose Hogenson <rosehogenson@posteo.net>2025-03-17 20:57:00 -0700
commit2d057d030f81069a3bc4e6e4c0317dcd68534e78 (patch)
tree46f4e9b35fccae8cd49ee09070c8be7750e7fc52
parent5924ab4508d90f074157888899ac52c2af57090a (diff)
downloadimgutil-2d057d030f81069a3bc4e6e4c0317dcd68534e78.tar.zst
Add more file formats
-rw-r--r--icat.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/icat.go b/icat.go
index 4bcfb45..56ab95a 100644
--- a/icat.go
+++ b/icat.go
@@ -6,11 +6,15 @@ import (
"flag"
"fmt"
"image"
+ _ "image/gif"
_ "image/jpeg"
_ "image/png"
"os"
+ _ "golang.org/x/image/bmp"
"golang.org/x/image/draw"
+ _ "golang.org/x/image/tiff"
+ _ "golang.org/x/image/webp"
"golang.org/x/term"
)