有没有办法为 python 中的 webp 图片设置图片质量?
Is there a way to set image quality for webp images in python?
有没有办法为 python 中的 .webp 图片设置图片质量?例如,保存 70% 质量的 webp 图片。
您可以使用 Pillow 模块执行此操作(但默认情况下 Python 不附带,请使用 pip install pillow
)
from PIL import Image # import the PIL.Image module
img = Image.open("image.webp") # open your image
img.save("image2.webp", quality=70) # save the image with the given quality
有没有办法为 python 中的 .webp 图片设置图片质量?例如,保存 70% 质量的 webp 图片。
您可以使用 Pillow 模块执行此操作(但默认情况下 Python 不附带,请使用 pip install pillow
)
from PIL import Image # import the PIL.Image module
img = Image.open("image.webp") # open your image
img.save("image2.webp", quality=70) # save the image with the given quality