327Python 中 PIL 实现图像缩放

Posted alex_bn_lee

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了327Python 中 PIL 实现图像缩放相关的知识,希望对你有一定的参考价值。

参考:Python 中使用PIL中的resize 进行缩放


实现代码如下:

from PIL import ImageGrab
img = Image.open(‘D:/tmp/4.jpg‘)
# 获取图像的大小
print(img.size)
# 获取图像 width
print(img.size[0])
# 获取图像 height
print(img.size[1])

img = img.resize((width, height),Image.ANTIALIAS) 

 

以上是关于327Python 中 PIL 实现图像缩放的主要内容,如果未能解决你的问题,请参考以下文章

python图像处理之PIL库

PIL库图像处理

Python之图像处理---PIL库

python之pil的使用

PIL如何根据图像大小缩放文本大小

python 三种方式实现截屏(详解+完整代码)