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

使用python进行图像处理-调整图片大小

时间:2014-12-07 16:25:44      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   使用   sp   on   文件   div   log   

python有一个图像处理库——PIL,可以处理图像文件。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
‘‘‘

 

使用python进行图像处理-调整图片大小

标签:blog   http   ar   使用   sp   on   文件   div   log   

原文地址:http://www.cnblogs.com/chjbbs/p/4149452.html

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