mirror of
https://github.com/fishtailstudio/imgo
synced 2025-09-27 12:52:21 +08:00
11 lines
163 B
Go
11 lines
163 B
Go
package main
|
|
|
|
import (
|
|
"github.com/fishtailstudio/imgo"
|
|
)
|
|
|
|
func main() {
|
|
base64Img := imgo.Load("gopher.png").ToBase64()
|
|
imgo.Load(base64Img).Save("out.png")
|
|
}
|