使用 GhostScript 将 PDF 转换为 PCL?
我可以使用 Ghostscript 将 pdf 文件转换为 pcl 文件吗?
我正在使用 Ghostscript 9.01 (gsdll32.dll)
并传递以下参数,但只获得一个 1k 文件,其中包含一些标题信息。我的 pdf 输入有 5 页...
以下是我的论点,它们正确吗?:
-q
-dQUIET
-dPARANOIDSAFER
-dBATCH
-dNOPAUSE
-dNOPROMPT
-dMaxBitmap=500000000
-dFirstPage=1
-dLastPage=2147483647
-dAlignToPixels=0
-dGridFitTT=2
-sDEVICE=pxlcolor
-dTextAlphaBits=4
-dGraphicsAlphaBits=4
-dDOINTERPOLATE
-dPDFFitPage
-sFONTPATH=C:\\Windows\\Fonts
-sOutputFile=d:\\output.pcl
d:\\input.pdf
Can I convert a pdf to pcl file with ghostscript?
I'm using Ghostscript 9.01 (gsdll32.dll)
and passing the following arguments in but only get a 1k file with what looks like some header info. My pdf input is 5 pages...
Here are my arguments are they correct?:
-q
-dQUIET
-dPARANOIDSAFER
-dBATCH
-dNOPAUSE
-dNOPROMPT
-dMaxBitmap=500000000
-dFirstPage=1
-dLastPage=2147483647
-dAlignToPixels=0
-dGridFitTT=2
-sDEVICE=pxlcolor
-dTextAlphaBits=4
-dGraphicsAlphaBits=4
-dDOINTERPOLATE
-dPDFFitPage
-sFONTPATH=C:\\Windows\\Fonts
-sOutputFile=d:\\output.pcl
d:\\input.pdf
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过将这些选项应用到 Windows
gswin32c.exe
命令的命令行来尝试这些选项。您现在应该会看到文件可能出现的任何错误消息。以下是选项的一些简化版本:[参数
-dMaxBitmap=...
对 Windows 没有影响。] 当然,您还应该在 CLI 上使用原始选项组合 - 您将然后看看你的和我的有没有区别。 :-)Try these options by applying them to a commandline to the Windows
gswin32c.exe
command. You should now see any error message that may occur with your file. Here is some simplified version of your options:[Parameter
-dMaxBitmap=...
has no effect on Windows.] Of course you should also use your original combination of options on the CLI -- you'll then see if there is a difference between yours and mine. :-)尝试通过首先添加最少的参数来对您的问题进行分类。我看到一个链接 - http://www.rhinocerus.net/forum/lang-postscript/130535-pdf-pcl-using-ghostscript.html" rhinocerus.net/forum/lang-postscript/130535-pdf-pcl-using-ghostscript.html。这里,输出和输入文件在分隔文件夹时没有“\”。所以这可能是问题所在
Try triaging your issue by only adding the bare minimum parameters first. One link I saw - http://www.rhinocerus.net/forum/lang-postscript/130535-pdf-pcl-using-ghostscript.html. Here the output and input files did not have the "\" when separating folders. So that could be the issue