Return the file extension of the image.
None
string
package main import ( "fmt" "github.com/fishtailstudio/imgo" ) func main() { img := imgo.Load("gopher.png") fmt.Println(img.Extension()) }
Output:
png
Last updated 2 years ago