Last updated 2 years ago
Load an image from an instance of *imgo.Image . It is recommended to use the method to load an image.
*imgo.Image
i
The instance of *imgo.Image .
package main import ( "github.com/fishtailstudio/imgo" ) func main() { img := imgo.Load("gopher.png") imgo.LoadFromImgo(img). Save("out.png") }