猿问

有没有办法在 python 中为 webp 图像设置图像质量?

有没有办法在 python 中为 .webp 图像设置图像质量?例如,保存一张质量为 70% 的 webp 图片。



皈依舞
浏览 119回答 1
1回答

墨色风雨

您可以使用 Pillow 模块执行此操作(但默认情况下它不随 Python 一起提供,请使用pip install pillow)from PIL import Image               # import the PIL.Image moduleimg = Image.open("image.webp")      # open your imageimg.save("image2.webp", quality=70) # save the image with the given quality

茅侃侃

https://pypi.org/project/webp/ 这个包好像合适
随时随地看视频慕课网APP

相关分类

Python
我要回答