有谁知道是否可以在 Python 中打开 ljpg(无损 jpeg)文件?(特别是我在 Windows XP 上使用 spyder)。
我在 Google、here 和 Python 文档上四处搜索,但什么也看不到。
如果不可能,我会尝试找出如何调用 Octave 来转换它,但如果我不必这样做,那就太好了。
谢谢!
由于以下不起作用,请尝试使用此包装器: http ://ebiznisz.hu/python-jpegtran/
似乎可以解决问题。
http://www.pyglet.org/doc/api/pyglet.image-module.html
http://effbot.org/imagingbook/image.htm
两者中的任何一个都应该能够。
from PIL import Image
im = Image.open("test.ljpg")
im.show()