ToImage
Parameters
Return Values
Examples
package main
import (
"fmt"
"github.com/fishtailstudio/imgo"
)
func main() {
img := imgo.Load("gopher.png").ToImage()
fmt.Println(img.Bounds())
}Last updated