Bounds

返回当前图像的 Bounds 。

参数

返回值

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)

最后更新于