Height

Return the height of the image.

Parameters

None

Return Values

string

Examples

package main

import (
    "fmt"
    "github.com/fishtailstudio/imgo"
)

func main() {
    img := imgo.Load("gopher.png")
    fmt.Println(img.Height())
}

Output:

256

Last updated