Load an image from a image URL. It is recommended to use the method to load an image.
package main
import (
"github.com/fishtailstudio/imgo"
)
func main() {
url := "https://www.baidu.com/img/flexible/logo/pc/result.png"
imgo.LoadFromUrl(url).
Save("out.png")
}