返回当前图像的 image.Image 类型的实例。
image.Image
无
image.Image 类型的实例。
package main import ( "fmt" "github.com/fishtailstudio/imgo" ) func main() { img := imgo.Load("gopher.png").ToImage() fmt.Println(img.Bounds()) }
输出:
(0,0)-(189,256)
最后更新于2年前