纯Python库读写jpeg格式

发布于 2024-11-07 13:33:25 字数 561 浏览 1 评论 0原文

伙计们! 我正在寻找 jpeg 写入的纯 python 实现(阅读会很好,但不是必需的)库。
我只在 http://mail 上创建了 TonyJPEG 库端口。 python.org/pipermail/image-sig/2004-November/003055.html
但问题是这个库不支持写入。

有什么想法吗?

UPD:我需要修改jpeg算法(从DCT开始)来制作工作原型。

UPD2:对我来说最好的决定是从另一种语言移植 Jpeg 库。我选择了 TonyJPEG 库,因为它比 libJPEG 更简单。
如果您需要在 Python 中有效地低级访问 JPEG,最好的选择是移植 libJPEG 之类的东西,或者尝试了解 PIL 等工具的工作原理。

guys!
I'm looking for pure python implementation of jpeg writing (reading will be nice, but not necessary) library.
I've founded only TonyJPEG library port at http://mail.python.org/pipermail/image-sig/2004-November/003055.html
But the problem is this library doesn't support writing.

Any ideas?

UPD: I need to modify jpeg algorithm (starting from DCT) to make working prototype.

UPD2: The best decision for me was to port Jpeg library from the another language. I've chosen TonyJPEG library, because It's simplier than libJPEG.
If you need effective low-level access to JPEG in Python, the best choice is to port something like libJPEG or try to understand how tools like PIL works.

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

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

发布评论

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

评论(2

柠檬色的秋千 2024-11-14 13:33:25

我不知道有任何用 100% python 编写的库,但是如果您只需要该库在 python 中工作,那么使用 PIL。它支持读取和写入许多不同的图像格式,包括 JPEG。实际上,它应该做你需要它做的一切。

I don't know of any libraries written in 100% python, however if you just need the library to work in python, then use PIL. It supports reading and writing many different imaging formats, including JPEG. Realistically, it should do everything you need it to do.

我喜欢麦丽素 2024-11-14 13:33:25

如果您想要相当低级别的访问权限,可以通过 libjpeg 使用href="http://docs.python.org/library/ctypes.html" rel="nofollow">ctypes
(注意:您没有指定您的工作环境)

If you want fairly low level access, you can use libjpeg through ctypes.
(NB: you didn't specify your working environment)

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