327Python 中 PIL 实现图像缩放
Posted alex_bn_lee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了327Python 中 PIL 实现图像缩放相关的知识,希望对你有一定的参考价值。
实现代码如下:
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 实现图像缩放的主要内容,如果未能解决你的问题,请参考以下文章