Width
Return the width 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.Width())
}
Output:
189
Last updated