最后更新于2年前
在图像中绘制像素点。
*imgo.Image 类型的实例。
*imgo.Image
package main import ( "github.com/fishtailstudio/imgo" "image/color" ) func main() { imgo.Canvas(300, 300, color.White). Pixel(100, 100, color.Black). Save("out.png") }
x
int
像素点坐标 x 轴
y
像素点坐标 y 轴
c
color.Color
像素点颜色