Python使用PIL将png图片转化为jpg图片
Posted Data+Science+Insight
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python使用PIL将png图片转化为jpg图片相关的知识,希望对你有一定的参考价值。
Python使用PIL将png图片转化为jpg图片
pip install Pillow
#PIL将png图片转化为jpg图片语法
from PIL import Image
im1 = Image.open(r'path where the PNG is stored\\file name.png')
im1.save(r'path where the JPG will be stored\\new file name.jpg')
#PIL将png图片转化为jpg图片
from PIL import Image
im1 = Image.open(r'C:\\Users\\test.png')
im1.save(r'C:\\Users\\test_2.jpg')
参考:python
参考:PIL
参考:How to Convert JPG to PNG using Python
以上是关于Python使用PIL将png图片转化为jpg图片的主要内容,如果未能解决你的问题,请参考以下文章