我试图遍历图像的每个像素,处理该像素,并将像素设置为新的颜色。
我尝试使用枕头:
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是我正在使用的图片