如何设置单个像素的颜色

时间:2019-03-30 16:49:02

标签: python python-imaging-library

我试图遍历图像的每个像素,处理该像素,并将像素设置为新的颜色。

我尝试使用枕头:

from PIL import Image
picture = Image.open("image.png")

# Get the size of the image
width, height = picture.size

# Process every pixel
for x in range(0, width):
    for y in range(0, height):
        current_color = picture.getpixel( (x,y) )
        print(current_color)
        new_color = processPixel(current_color)
        picture.putpixel( (x,y), new_color)

但是打印current_color只会为图像中的每个像素打印0

Here是我正在使用的图片

1 个答案:

答案 0 :(得分:0)

使用不带括号的picture.size。

关于打印颜色,您发布的图片具有"P" mode in PIL,它不是“ RGB”模式,因此得到的是零。