python处理图像--调整图片大小

使用Pillow库
使用管理员模式进行pip下载安装pip install Pillow
安装在:C:\Program Files\Python36\Lib\site-packages\Pillow
处理图像:

  1. 导入PIL库from PIL import Image
  2. 读取图片im = Image.open('D://image.jpg')
  3. 显示图片im.show()
  4. 调整图片大小
    (x, y) = im.size # 读取图片大小
    new_x = 400
    new_y = 400
    out = im.resize((new_x, new_y), Image.ANTIALIAS)
    out.save('D://new_image.jpg')
    

你可能感兴趣的:(python处理图像--调整图片大小)