900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > Python使用PIL将png图片转化为jpg图片

Python使用PIL将png图片转化为jpg图片

时间:2021-03-20 03:18:14

相关推荐

Python使用PIL将png图片转化为jpg图片

Python使用PIL将png图片转化为jpg图片

pip install Pillow

#PIL将png图片转化为jpg图片语法

from PIL import Imageim1 = 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 Imageim1 = 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

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。