在 Python 中操作 WebP 图像

发布于 2024-11-27 03:58:33 字数 105 浏览 1 评论 0原文

我正在寻找类似 PIL(Python 图像库)之类的东西,遗憾的是它不支持 WebP 图像。

我希望能够调整大小和裁剪。或者至少转换为 JPEG,然后我可以使用 PIL 来处理它。

I'm looking for something like PIL (Python Imaging Library), which sadly doesn't support WebP images.

I'd like to be able to do resizes and crops. Or at least convert to JPEG and then I can work it with PIL.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

尸血腥色 2024-12-04 03:58:33

看看:
http://code.google.com/p/python-webm/

我能够浏览测试文件以了解他们是如何做到的。

Take a look at:
http://code.google.com/p/python-webm/

I was able to walk through the test file to see how they were doing it.

樱花细雨 2024-12-04 03:58:33

imagemagick 的转换工具,版本 6.5.7-8 或更高版本,可以操作WebP图片

此外,Google 还提供了适用于 Linux、Windows 和 Mac OS X 的编码器和解码器

imagemagick's convert tool, version 6.5.7-8 or better, can manipulate WebP images.

Also, Google provides an encoder and decoder for Linux, Windows and Mac OS X.

帅冕 2024-12-04 03:58:33

这是一篇较晚的文章,但 PIL(Pillow)模块支持 webp 图像格式。

支持的文件格式和有关支持级别的额外信息如下:

from PIL import Image
im = Image.open("foo.webp").convert("RGB")
im.save("foo.jpg", "jpeg")

This is a late post but the PIL (Pillow) module supports the webp image format.

The supported file formats and extra information about levels of support is here:

from PIL import Image
im = Image.open("foo.webp").convert("RGB")
im.save("foo.jpg", "jpeg")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文