在Python中,可以使用Pillow(PIL)庫進行圖像處理。以下是使用Pillow庫進行圖像處理的基本步驟:
pip install Pillow
from PIL import Image
img = Image.open('image.jpg')
# 調(diào)整大小
img_resized = img.resize((width, height))
# 旋轉(zhuǎn)
img_rotated = img.rotate(90)
# 裁剪
img_cropped = img.crop((left, top, right, bottom))
img_resized.save('resized_image.jpg')
img_rotated.save('rotated_image.jpg')
img_cropped.save('cropped_image.jpg')
這只是一些基本的圖像處理操作,Pillow庫還提供了許多其他功能和方法,可以根據(jù)具體需求進行更多高級的圖像處理操作。