返回当前图像的文件扩展。
无
string
package main import ( "fmt" "github.com/fishtailstudio/imgo" ) func main() { img := imgo.Load("gopher.png") fmt.Println(img.Extension()) }
输出:
png
最后更新于2年前