gpt4 book ai didi

python-3.x - 用户通过 python wand 将 pdf 转换为 jpg,在 docker 中引发 wand.exceptions.Wand RuntimeError

转载 作者:行者123 更新时间:2023-12-02 18:47:51 28 4
gpt4 key购买 nike

我想将 pdf 的第一页转换为图像。我的以下代码在我的本地环境中运行良好:Ubuntu 18。但是当我在 docker 环境中运行时,它失败并引发:

wand.exceptions.WandRuntimeError: MagickReadImage returns false, but did raise ImageMagick exception. This can occurs when a delegate is missing, or returns EXIT_SUCCESS without generating a raster.



我是否缺少依赖项?或者是其他东西?我不知道它指的是什么“代表”。

我看到了源代码,在这里失败了: wand/image.py::7873lines
if blob is not None:
if not isinstance(blob, abc.Iterable):
raise TypeError('blob must be iterable, not ' +
repr(blob))
if not isinstance(blob, binary_type):
blob = b''.join(blob)
r = library.MagickReadImageBlob(self.wand, blob, len(blob))
elif filename is not None:
filename = encode_filename(filename)
r = library.MagickReadImage(self.wand, filename)
if not r:
self.raise_exception()
msg = ('MagickReadImage returns false, but did raise ImageMagick '
'exception. This can occurs when a delegate is missing, or '
'returns EXIT_SUCCESS without generating a raster.')
raise WandRuntimeError(msg)

r = library.MagickReadImageBlob(self.wand, blob, len(blob))返回 true在我的本地环境中,但在 docker 中它返回 false .此外,args blob 和 len(blob) 是相同的。
def pdf2img(fp, page=0):
"""
convert pdf to jpeg image
:param fp: a file-like object
:param page:
:return: (Bool, File) if False, mean the `fp` is not pdf, if True, then the `File` is a file-like object
contain the `jpeg` format data
"""
try:
reader = PdfFileReader(fp, strict=False)
except Exception as e:
fp.seek(0)
return False, None
else:
bytes_in = io.BytesIO()
bytes_out = io.BytesIO()
writer = PdfFileWriter()

writer.addPage(reader.getPage(page))
writer.write(bytes_in)
bytes_in.seek(0)

im = Image(file=bytes_in, resolution=120)
im.format = 'jpeg'
im.save(file=bytes_out)
bytes_out.seek(0)
return True, bytes_out

最佳答案

I don't know what it's referring to as 'delegate'.



对于 ImageMagick,“委托(delegate)”是指任何共享库、实用程序或执行文件类型实际编码和解码的外部程序。具体来说,是光栅的文件格式。

Am I missing a dependency?



最有可能的。对于 PDF,您需要 ghostscript安装在 docker 实例上。

Or something else?



可能,但如果没有错误消息就很难确定。 “WandRuntimeError”异常是包罗万象的。它的存在是因为无​​法从 PDF 生成光栅,并且 Wand 和 ImageMagick 都无法确定原因。如果委托(delegate)失败、安全策略消息或操作系统错误,通常会出现异常。

最好的办法是运行几个 gs命令以查看 ghostscript 是否正常工作。
gs -sDEVICE=pngalpha -o page-%03d.png -r120 input.pdf

如果上述方法有效,请使用 ImageMagick 再试一次
convert -density 120 input.pdf page-%03d.png

关于python-3.x - 用户通过 python wand 将 pdf 转换为 jpg,在 docker 中引发 wand.exceptions.Wand RuntimeError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57271287/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com