Golang : Fix image: unknown format error
Problem :
You want to find out the dimension of an image file with image.DecodeConfig()
function - to get the color model, width and height. However, while doing so, you get this strange error message :
image : unknown format error
How to fix this problem?
Solutions :
1) The image.DecodeConfig()
function is either reading an empty file or pointer to empty file. Before calling image.DecodeConfig(inputFile)
, perform sanity check on the input file. Is the size zero? Is the file is actually a directory? A common mistake is that the inputFile
parameter only contains the filename, but not the full path. i.e missing the directory.
You may need to use the path/filepath.Abs()
function. See https://www.socketloop.com/references/golang-path-filepath-abs-function-example
2) Also remember, to import image/jpeg
, image/png
and image/gif
and initialize them at the init()
function. See https://www.socketloop.com/references/golang-image-registerformat-function-example
Reference :
https://www.socketloop.com/tutorials/golang-get-dimension-width-and-height-of-image-file
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5.1k Unix/Linux : How to archive and compress entire directory ?
+6.6k Golang : Get expvar(export variables) to work with multiplexer
+24.8k Golang : Create PDF file from HTML file
+12.8k Golang : Calculate elapsed years or months since a date
+19.8k Golang : Determine if directory is empty with os.File.Readdir() function
+6.4k Golang : Warp text string by number of characters or runes example
+27.4k PHP : Count number of JSON items/objects
+6.5k Golang : Derive cryptographic key from passwords with Argon2
+19.9k Swift : Convert (cast) Int to int32 or Uint32
+9.8k Golang : Setting variable value with ldflags
+11.6k Golang : Setup API server or gateway with Caddy and http.ListenAndServe() function example
+9k Golang : How to find out similarity between two strings with Jaro-Winkler Distance?