在Python中,可以使用Pillow库来缩小图片并保持其原比例。可以按照以下步骤进行操作:
pip install Pillow
from PIL import Image
image = Image.open("input.jpg")
width, height = image.size
target_width = width // 2
target_height = height // 2
resize()
函数来缩小图片并保持原比例:image.thumbnail((target_width, target_height), Image.ANTIALIAS)
image.save("output.jpg")
完整的代码示例:
from PIL import Image
# 打开图片文件
image = Image.open("input.jpg")
# 获取原始图片的宽度和高度
width, height = image.size
# 设置缩小后的目标宽度和高度
target_width = width // 2
target_height = height // 2
# 缩小图片并保持原比例
image.thumbnail((target_width, target_height), Image.ANTIALIAS)
# 保存缩小后的图片
image.save("output.jpg")
这样,就可以将图片按照原比例缩小,并保存为新的图片文件。