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