要使用Python和Pillow库调整图像的对比度和亮度,可以按照以下步骤进行:
pip install Pillow
from PIL import Image, ImageEnhance
# 打开图像文件
image = Image.open('input.jpg')
# 调整亮度
brightness = 1.5
enhancer = ImageEnhance.Brightness(image)
image = enhancer.enhance(brightness)
# 调整对比度
contrast = 1.5
enhancer = ImageEnhance.Contrast(image)
image = enhancer.enhance(contrast)
# 保存处理后的图像
image.save('output.jpg')
在脚本中,通过调整brightness
和contrast
变量的值来控制图像的亮度和对比度。值为1表示原始图像的亮度和对比度,大于1表示增加亮度和对比度,小于1表示减少亮度和对比度。
运行脚本,会生成一个新的图像文件output.jpg
,其中包含了调整后的图像。
通过以上步骤,就可以使用Python和Pillow库来调整图像的对比度和亮度。