要使用Python的Image庫調整圖片大小,首先需要安裝PIL庫。然后可以按照以下步驟進行操作:
from PIL import Image
img = Image.open('example.jpg')
new_img = img.resize((width, height))
這里的width
和height
是調整后的圖片尺寸。可以根據需要指定具體的像素值或比例。
new_img.save('resized_example.jpg')
通過這些步驟,就可以使用Python的Image庫調整圖片大小。