我正在尝试使图像的一部分模糊。最终我想模糊脸部,但我不能只模糊一部分。我正在尝试裁剪图像的一部分,然后将其粘贴回原始图像。我可以裁剪它,但是当我保存粘贴了裁剪区域的图像时,我收到“AttributeError:'NoneType'对象没有属性'save'”
这是我正在使用的代码:
import Image, ImageFilter
picture = Image.open("picture1.jpg")
#finds width and height of picture
width, height = picture.size
#crops the picture
box = (20, 20, width/2, height/2)
ic = picture.crop(box)
#blurs the cropped part of the picture
ic = ic.filter(ImageFilter.GaussianBlur(radius=20))
#pastes the image back
blurredPic = picture.paste(ic, box)
#saves the new image and the cropped image
blurredPic.save("BlurredPic.jpg")
ic.save("cropPic.jpg")
我真的很感激帮助。