使用 GhostScript 将 PDF 转换为 PCL?

发布于 2024-10-19 02:33:37 字数 527 浏览 1 评论 0原文

我可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

奈何桥上唱咆哮 2024-10-26 02:33:37

通过将这些选项应用到 Windows gswin32c.exe 命令的命令行来尝试这些选项。您现在应该会看到文件可能出现的任何错误消息。以下是选项的一些简化版本:

gswin32c.exe ^
  -o d:/output.pcl ^
  -dAlignToPixels=0 ^
  -dGridFitTT=2 ^
  -sDEVICE=pxlcolor ^
  -dTextAlphaBits=4 ^
  -dGraphicsAlphaBits=4 ^
  -dDOINTERPOLATE ^
  -dPDFFitPage=true ^
  -sFONTPATH=C:/Windows/Fonts ^
   d:\\input.pdf

[参数 -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:

gswin32c.exe ^
  -o d:/output.pcl ^
  -dAlignToPixels=0 ^
  -dGridFitTT=2 ^
  -sDEVICE=pxlcolor ^
  -dTextAlphaBits=4 ^
  -dGraphicsAlphaBits=4 ^
  -dDOINTERPOLATE ^
  -dPDFFitPage=true ^
  -sFONTPATH=C:/Windows/Fonts ^
   d:\\input.pdf

[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. :-)

箜明 2024-10-26 02:33:37

尝试通过首先添加最少的参数来对您的问题进行分类。我看到一个链接 - 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文