答案 0 :(得分:1)
正如@Daniel所说,你可以使用.thumbnail()
创建缩略图,创建一个与原始图像大小相同的新图像,然后将缩略图粘贴到新图像中:
def scale_image(img, factor, bgcolor):
# create new image with same mode and size as the original image
out = PIL.Image.new(img.mode, img.size, bgcolor)
# determine the thumbnail size
tw = int(img.width * factor)
th = int(img.height * factor)
# determine the position
x = (img.width - tw) // 2
y = (img.height - th) // 2
# create the thumbnail image and paste into new image
img.thumbnail((tw,th))
out.paste(img, (x,y))
return out
factor
应介于0和1之间,bgcolor
是新图片的背景色。
示例:
img = PIL.Image.open('image.jpg')
new_img = scale_image(img, 0.5, 'white')
new_img.show()