我想知道,用x和y值在python中绘制像素的最简单方法是什么?
答案 0 :(得分:2)
可能最简单的方法是使用PIL(Python Imaging Library),它可以在4行中实现:
from PIL import Image, ImageColor
im = Image.new('1', (1,1)) # create the Image of size 1 pixel
im.putpixel((0,0), ImageColor.getcolor('black', '1')) # or whatever color you wish
im.save('simplePixel.png') # or any image format
该文档显示了许多其他方法来自定义http://pillow.readthedocs.io/en/3.4.x/reference/Image.html#examples。