PIL粘贴图像没有模糊

时间:2013-08-30 17:11:12

标签: python python-imaging-library

我想使用PIL将图像粘贴到单个彩色背景中,但粘贴的照片周围会出现一些模糊和噪音:

enter image description here

(缩放照片以查看噪音。我认为这是来自Antialiasing)但我希望像这里一样粘贴明显的边界:

enter image description here

我正在使用此代码进行粘贴:

my_image.convert('RGBA')
background = Image.new("RGBA", (background_size), background_color)
background.paste( my_image, (coordinates), my_image )
background.save("result.jpg")

我用尖锐的边界粘贴做什么? 感谢。

1 个答案:

答案 0 :(得分:2)

jpg是一种有损格式,因此可能会模糊图像或添加噪点,以节省内存。使用像png这样的无损格式:

background.save("result.png")