返回当前图像的宽度。
无
int
package main import ( "fmt" "github.com/fishtailstudio/imgo" ) func main() { img := imgo.Load("gopher.png") fmt.Println(img.Width()) }
输出:
189
最后更新于2年前