Last updated 3 years ago
Read a image from Base64 encoded string of a image.
base64Str
string
Base64 encoded string of a image.
The instance of *imgo.Image .
*imgo.Image
package main import ( "github.com/fishtailstudio/imgo" ) func main() { base64Img := imgo.Load("gopher.png").ToBase64() imgo.Load(base64Img).Save("out.png") }