如何在 App Engine 中解码 JPG 中的像素(使用纯 python)?
使用 python App Engine,我需要将一张 9 MB(巴基斯坦洪水)文件的 JPG 图像转换为许多 PNG 图块。
对于 PNG 部分,我已经知道如何使用 PyPNG,这很棒。注意:PIL 不能与 App Engine 一起使用。
那么如何将JPG解码为像素数据呢?
Using python App Engine I need to convert a JPG image that is one 9 MB file (of Pakistan's floods) into many PNG tiles.
For the PNG part, I already know how to use PyPNG, which is great. Note: PIL cant be used with App Engine.
So how do I decode the JPG into pixel data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Image 类和
crop
和execute_transforms
编码为 png?注意:您应该提供代码的相关部分
Using Image class and
crop
andexecute_transforms
to encode as png?Note: You should provide relevant part of your code
您可以使用此处的努力来获得纯Python JPEG解析器。为什么绝对需要使用 App Engine?如果您想要更灵活的库使用,请尝试 EC2。
You can use the efforts here to get a pure python JPEG Parser. Why the absolute need to use App Engine ? If you want more flexible library usage try EC2.