python通过Pillow库实现图像的缩与放

背景:
忙事情的时候要缩放某个图像,本来想用电脑上的,但看到要收钱,没办法,自己搞一个

代码实现:

这里使用Python的Pillow库来缩放图像并保存

from PIL import Image

# 打开图像文件
image = Image.open('00001-1766907055.png')
# 建议图像与这个python文件在同一目录下捏

# 缩放图像为指定大小
width = 1980
height = 1040
resized_image = image.resize((width, height))

# 保存缩放后的图像
resized_image.save('output.png')

就这样,简单几行代码实现

python通过Pillow库实现图像的缩与放_第1张图片
python通过Pillow库实现图像的缩与放_第2张图片
python通过Pillow库实现图像的缩与放_第3张图片
python通过Pillow库实现图像的缩与放_第4张图片
python通过Pillow库实现图像的缩与放_第5张图片

你可能感兴趣的:(平时手记,python,pillow,开发语言)