码迷,mamicode.com
首页 > 编程语言 > 详细

【327】Python 中 PIL 实现图像缩放

时间:2018-06-23 22:44:11      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:targe   ali   tar   resize   img   target   width   TE   bsp   

参考: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) 

 

【327】Python 中 PIL 实现图像缩放

标签:targe   ali   tar   resize   img   target   width   TE   bsp   

原文地址:https://www.cnblogs.com/alex-bn-lee/p/9218900.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!