Python代码选择/更改照片区域颜色&图案

时间:2016-07-14 17:41:31

标签: python

我正在寻找关于如何编写一段代码(python首选)的一些指导,以将此图片上的反顶部的颜色/图案更改为用户将选择的其他内容。我正在研究Python PIL吧现在但找不到选择/粘贴的方法 新图案进入图片。任何帮助非常感谢。谢谢。

before

after

1 个答案:

答案 0 :(得分:0)

您需要使用Image模块来完成您要完成的任务。

import Image
picture = Image.open("/path/of/your/picture.jpg")

# Get the dimensions of your picture
width, height = picture.size()

# Process the pixels you are focused on
for x in width:
   for y in height:
       current_color = picture.getpixel( (x,y) )
       ####################################################################
       #create a new (R,G,B) tuple called new_color
       ####################################################################
       picture.putpixel( (x,y), new_color)