Python怎么改图片大小

python

Python怎么改图片大小

python有一个图像处理库——PIL,可以处理图像文件。PIL提供了功能丰富的方法,比如格式转换、旋转、裁剪、改变尺寸、像素处理、图片合并等等等等,非常强大。

推荐学习《Python教程》。

下面来看下使用PIL改图片大小的例子:

import Image

infile = 'D:original_img.jpg'

outfile = 'D:adjust_img.jpg'

im = Image.open(infile)

(x,y) = im.size #read image size

x_s = 250 #define standard width

y_s = y * x_s / x #calc height based on standard width

out = im.resize((x_s,y_s),Image.ANTIALIAS) #resize image with high-quality

out.save(outfile)

print 'original size: ',x,y

print 'adjust size: ',x_s,y_s

'''

OUTPUT:

original size:  500 358

adjust size:  250 179

'''

压缩前和压缩后对比:

利用上述代码将图片压缩为48*48的图片如下

以上是 Python怎么改图片大小 的全部内容, 来源链接: utcz.com/z/527074.html

回到顶部