使用Python自动将PNG转换为JPG

发布于 2024-10-12 00:29:50 字数 259 浏览 3 评论 0原文

我编写了一个 Python 程序,使用从 URL 检索图像。从

msgImage = MIMEImage( urllib2.urlopen(chartURL).read() )
msgRoot.attach(msgImage)

URL 获取的图像是 PNG 格式,但我想嵌入它的 JPG 版本。有没有一种简单的方法可以自动将 PNG msgImage 转换为 JPG 以获取较小的附件?

感谢您的阅读。非常感谢任何帮助。

I've written a Python program to retrieve an image from a URL using

msgImage = MIMEImage( urllib2.urlopen(chartURL).read() )
msgRoot.attach(msgImage)

The image that I get from the URL is in PNG format, but I would like to embed a JPG version of it. Is there a simple way to automatically convert the PNG msgImage into JPG for smaller attachments?

Thanks for reading. Any help is greatly appreciated.

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

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

发布评论

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

评论(1

清引 2024-10-19 00:29:50

您可以使用 PIL: http://www.pythonware.com/products/pil/
这很简单,并且有很多文档。

You can use PIL: http://www.pythonware.com/products/pil/
It is easy and it has a lot of documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文