使用PIL

时间:2018-12-21 20:40:45

标签: python python-imaging-library

我正在尝试调整大小并压缩用户上传的图像,但是当我上传JPEG图像时,得到的结果与此类似。 PNG格式似乎可以正常工作,有人知道这里发生了什么吗?我尝试了不同的压缩方式和所有重采样类型,但也无济于事。

image = Image.open(image_path)
image.thumbnail((1000, 1000), Image.ANTIALIAS)
image.save(target_path, 'JPEG', quality=90, optimize=True)

环境

  • CentOS 6 64位
  • 枕头2.8.1

enter image description here

0 个答案:

没有答案