Mimetype

返回当前图像的 Mimetype。

参数

返回值

string

例子

package main

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

func main() {
    img := imgo.Load("gopher.png")
    fmt.Println(img.Mimetype())
}

输出:

image/png

最后更新于