ToBase64

返回图像的 PNG 格式的 Base64 编码字符串。

参数

返回值

string

例子

package main

import (
    "github.com/fishtailstudio/imgo"
)

func main() {
    base64Img := imgo.Load("gopher.png").ToBase64()
}

例子的 base64Img 字符串为 data:image/png;base64,......

最后更新于