在TurboPascal中,我可以使用:
在显示器上设置像素Plot (x, y, colour)
Python中的等价物是什么?如何在Python中设置或取消设置单个像素?
答案 0 :(得分:2)
python中有几个有用的库可以帮到你。我会说PyGame或Pyglet都是不错的选择。 Pyglet是python中Opengl的包装器,但它可以让你控制像素。如果您只是尝试使用没有任何其他绘图功能的粗略像素集,python Imaging库允许您这样做:
pixels = img.load() # create the pixel map
for i in range(img.size[0]): # for every pixel:
for j in range(img.size[1]):
pixels[i,j] = (i, j, 100) # set the colour accordingly