Line

在图像中绘制直线。

参数

参数名类型说明

x1

int

直线端点坐标 x 轴

y1

int

直线端点坐标 y 轴

x2

int

直线另一个端点坐标 x 轴

y2

int

直线另一个端点坐标 y 轴

c

color.Color

直线颜色

返回值

*imgo.Image 类型的实例。

例子

package main

import (
    "github.com/fishtailstudio/imgo"
    "image/color"
)

func main() {
    imgo.Canvas(300, 300, color.White).
        Line(10, 10, 200, 250, color.Black).
        Save("out.png")
}

最后更新于