将 pdf 转换为图像时出现 Ghostscript 错误

Posted

技术标签:

【中文标题】将 pdf 转换为图像时出现 Ghostscript 错误【英文标题】:getting error for Ghostscript when converting pdf to image 【发布时间】:2021-03-01 17:23:44 【问题描述】:

我正在尝试读取 PDF 并写入图像。那里没有很多文档,但我尝试了这些示例:

import ghostscript
import locale

def pdf2jpeg(pdf_input_path, jpeg_output_path):
    args = ["pdf2jpeg", # actual value doesn't matter
            "-dNOPAUSE",
            "-sDEVICE=jpeg",
            "-r144",
            "-sOutputFile=" + jpeg_output_path, pdf_input_path]

    encoding = locale.getpreferredencoding()
    args = [a.encode(encoding) for a in args]
    ghostscript.Ghostscript(*args)

pdf2jpeg('input.pdf', 'output.jpeg')

我得到了错误:

partially initialized module 'ghostscript' has no attribute 'Ghostscript' (most likely due to a circular import)

为了安装,我这样做了,它安装了最新的 0.6 版。

pip install ghostscript

根据文档,我有要求(我正在运行 Python 3.8 Anaconda Spyder)

https://pypi.org/project/ghostscript/

检查可用的方法:

dir(ghostscript)
Out[30]: 
['__builtins__',
 '__cached__',
 '__doc__',
 '__file__',
 '__loader__',
 '__name__',
 '__package__',
 '__spec__',
 'ghostscript',
 'locale',
 'pdf2jpeg',
 'sys']

还有什么我需要的吗?

【问题讨论】:

【参考方案1】:

这是因为我将脚本命名为 ghostscript.py。我只需要重命名它。

【讨论】:

以上是关于将 pdf 转换为图像时出现 Ghostscript 错误的主要内容,如果未能解决你的问题,请参考以下文章

使用 ImageMagick 将 PNG 文件转换为 PDF 时出现粗糙的边缘

使用 Batik 将 svg 转换为图像时出现 TranscoderException

将 s-s-rS 报告导出为 PDF 格式时出现 png 图像问题

使用 Ghostscript 将 PDF 转换为打印支持的格式时出现“错误:/ioerror in --filter--”

如何解决利用aspose把word文档转换为pdf文档时出现乱码 C#

如果source是pdf类型,则将ps转换为pdf时出现问题