Added TIFF image support

This commit is contained in:
Zoraiz 2021-05-16 16:57:06 +05:00
parent 62407b6189
commit 5cd874c5db
2 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@ Image formats currently supported:
* JPEG/JPG * JPEG/JPG
* WEBP * WEBP
* BMP * BMP
* TIFF
<br> <br>

View File

@ -28,6 +28,7 @@ import (
// Image format initialization // Image format initialization
_ "golang.org/x/image/bmp" _ "golang.org/x/image/bmp"
_ "golang.org/x/image/tiff"
_ "golang.org/x/image/webp" _ "golang.org/x/image/webp"
imgMani "github.com/TheZoraiz/ascii-image-converter/image_manipulation" imgMani "github.com/TheZoraiz/ascii-image-converter/image_manipulation"