Pillow 是一个 Python 图像处理库,可以用来模拟不同镜头下的图像效果。以下是一些常见的效果和如何使用 Pillow 实现它们的示例:
convert()
方法将图像转换为灰度图像。from PIL import Image
image = Image.open('image.jpg')
bw_image = image.convert('L')
bw_image.show()
ImageFilter
模块中的 Vintage
滤镜。from PIL import Image, ImageFilter
image = Image.open('image.jpg')
vintage_image = image.filter(ImageFilter.Vintage)
vintage_image.show()
ImageFilter
模块中的 BLUR
滤镜。from PIL import Image, ImageFilter
image = Image.open('image.jpg')
blurred_image = image.filter(ImageFilter.BLUR)
blurred_image.show()
ImageFilter
模块中的 SHARPEN
滤镜。from PIL import Image, ImageFilter
image = Image.open('image.jpg')
sharpened_image = image.filter(ImageFilter.SHARPEN)
sharpened_image.show()
通过使用 Pillow 提供的图像处理功能,可以轻松实现不同镜头下的图像效果。可以根据需要尝试不同的效果和参数来获得更多有趣的效果。