我需要能够将 JPEG-XR 图像转换为 JPG 格式,并且已经通过 ImageMagick 本身完成了这项工作。但是,我需要能够从 python 应用程序中执行此操作,并且一直在考虑使用 Wand。Wand 似乎没有正确使用 JXR 图像的路径。
with open(os.path.join(args.save_location, img_name[0], result[0]+".jxr"), "wb") as output_file:
output_file.write(result[1])
with Image(filename=os.path.join(args.save_location, img_name[0], result[0]+".jxr")) as original:
with original.convert('jpeg') as converted:
print(converted.format)
pass
第一部分 - 创建 output_file 并写入 result[1](来自 SQLite 数据库的 JXR 图像块) - 工作正常。但是,当我尝试使用 Python 和 Wand 将新保存的文件作为图像打开时,我收到一个错误,最终表明 Wand 没有在正确的位置查找图像:
Extracting panorama 00000
FAILED: -102=pWS->Read(pWS, szSig, sizeof(szSig))
JXRGlueJxr.c:1806
FAILED: -102=ReadContainer(pID)
JXRGlueJxr.c:1846
FAILED: -102=pDecoder->Initialize(pDecoder, pStream)
JXRGlue.c:426
FAILED: -102=pCodecFactory->CreateDecoderFromFile(args.szInputFile, &pDecoder)
e:\coding\python\sqlite panoramic image extraction tool\jxrlib\jxrencoderdecoder\jxrdecapp.c:477
JPEG XR Decoder Utility
Copyright 2013 Microsoft Corporation - All Rights Reserved
... [it outputs its help page in case of errors; snipped]
The system cannot find the file specified.
Traceback (most recent call last):
File "E:\Coding\Python\SQLite Panoramic Image Extraction Tool\SQLitePanoramicImageExtractor\trunk\PanoramicImageExtractor.py", line 88, in <module>
with Image(filename=os.path.join(args.save_location, img_name[0], result[0]+".jxr")) as original:
File "C:\Python34\lib\site-packages\wand\image.py", line 1991, in __init__
self.read(filename=filename, resolution=resolution)
File "C:\Python34\lib\site-packages\wand\image.py", line 2048, in read
self.raise_exception()
File "C:\Python34\lib\site-packages\wand\resource.py", line 222, in raise_exception
raise e
wand.exceptions.BlobError: unable to open image `C:/Users/RPALIW~1/AppData/Local/Temp/magick-14988CnJoJDwMRL4t': No such file or directory @ error/blob.c/OpenBlob/2674
正如您在最后看到的那样,它似乎试图打开一个临时文件'C:/Users/RPALIW~1/AppData/Local/Temp/magick-14988CnJoJDwMRL4'。此时使用的文件名应该与上面几行用于将图像保存为文件的文件名完全相同,但是 Wand 替换了其他东西?这看起来类似于我在 ImageMagick 中遇到的最后一个问题,该问题已在周末修复(详细信息:http ://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=27027&p=119702# p119702 )。
有没有人成功让 Wand 在 Python 中将 JXR 图像打开为图像,并转换为另一种格式?我在这里做错了什么,还是 ImageMagick 或 Wand 有问题?