使用Python自动将PNG转换为JPG
我编写了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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.