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