如何在 App Engine 中解码 JPG 中的像素(使用纯 python)?

发布于 2024-09-15 12:54:26 字数 162 浏览 7 评论 0原文

使用 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 技术交流群。

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

发布评论

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

评论(2

青萝楚歌 2024-09-22 12:54:26

使用 Image 类和 cropexecute_transforms 编码为 png?

注意:您应该提供代码的相关部分

Using Image class and crop and execute_transforms to encode as png?

Note: You should provide relevant part of your code

伏妖词 2024-09-22 12:54:26

您可以使用此处的努力来获得纯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.

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