Ghostscript 命令行参数将 EPS 转换为 PDF

发布于 2024-07-17 05:33:16 字数 153 浏览 8 评论 0原文

刚刚安装了适用于 Windows 的 Ghostscript 8.54。

有谁知道要传递给 gswin32c.exe 的最小参数,以使其将 someFile.eps 转换为 someFile.eps.pdf

Just installed Ghostscript 8.54 for Windows.

Does anyone know of the minimum parameters to pass to gswin32c.exe to make it convert, say, someFile.eps to someFile.eps.pdf?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

青衫负雪 2024-07-24 05:33:16

由于问题是关于“传递给 gswin32c.exe 以使其将 someFile.eps 转换为 someFile.eps.pdf 的最小参数”,让我给出一个答案:

  c:/path/to/gswin32c.exe ^
    -sDEVICE=pdfwrite ^
    -o c:/path/to/output.pdf ^
    c:/path/to/input.eps

或更短:

  gswin32c ^
    -sDEVICE=pdfwrite ^
    -o output.pdf ^
    input.eps

这将使用 Ghostscript 的内置默认参数。 其中最重要的,从我的脑海中看,对于最新版本的 Ghostscript 来说是:

  • -dPDFSETTINGS=/default ........ 与 Adob​​e Distiller 使用的设置大致相同对于“屏幕”,有以下差异:
  • -r720x720 ................................ .. 分辨率:720 dpi(需要转换为位图的位图/字体)
  • -dColorConversionStrategy=/LeaveColorUnchanged ...(Distiller 的“屏幕”使用 =/sRGB
  • -dCompatibilityLevel=1.4 ....(Distiller 的“屏幕”使用 =1.3
  • -dEmbedAllFonts=true [*]........ . (Distiller 的“屏幕”使用 =false)
  • -dOptimize=false [**] ........................ (Distiller 的“ screen”使用 =true)
  • -dDownsample{Color,Gray,Mono}Images=false ...(Distiller 的“screen”使用 =true )

[*] 默认情况下,Ghostscript 不嵌入经典的“Base 14”-PostScript 字体。 要强制执行此操作,请使用额外的参数(在命令行末尾!),例如 -c "<>setdistillerparams" -fc:/path/to/input.pdf.
[**] Ghostscript 的 pdfwrite 设备在第一次写入 PDF 时无法“优化”PDF。 要优化,您必须使用特殊参数再次调用 Ghostscript 进行第二遍(您也可以尝试 -dOptimize=true)。

顺便说一句,Ghostscript 的最新版本是 8.71,可在此处获取:ghostscript.com/relases

Since the question was about the "minimum parameters to pass to gswin32c.exe to make it convert, say, someFile.eps to someFile.eps.pdf", let me give an answer:

  c:/path/to/gswin32c.exe ^
    -sDEVICE=pdfwrite ^
    -o c:/path/to/output.pdf ^
    c:/path/to/input.eps

or even shorter:

  gswin32c ^
    -sDEVICE=pdfwrite ^
    -o output.pdf ^
    input.eps

This will use the builtin, default parameters for Ghostscript. The most important of which, from the top of my head, for the most recent version of Ghostscript are:

  • -dPDFSETTINGS=/default ........ roughly the same settings as Adobe Distiller uses for "screen" with the following differences:
  • -r720x720 .................................. resolution: 720 dpi (bitmaps/fonts requiring conversion to bitmap)
  • -dColorConversionStrategy=/LeaveColorUnchanged ... (Distiller's "screen" uses =/sRGB)
  • -dCompatibilityLevel=1.4 .... (Distiller's "screen" uses =1.3)
  • -dEmbedAllFonts=true [*]......... (Distiller's "screen" uses =false)
  • -dOptimize=false [**] ............... (Distiller's "screen" uses =true)
  • -dDownsample{Color,Gray,Mono}Images=false ... (Distiller's "screen" uses =true)

[*] By default, Ghostscript does not embed the classical "Base 14"-PostScript fonts. To enforce that, use an extra parameter (at the end of the command line!) like -c "<</NeverEmbed [ ]>>setdistillerparams" -f c:/path/to/input.pdf.
[**] Ghostscript's pdfwrite device cannot "optimize" a PDF when it is writing it the first time. To optimize, you have to call Ghostscript again for a second pass, using special parameters (you may also try -dOptimize=true).

BTW, Ghostscript's most recent version is 8.71, available here: ghostscript.com/relases.

谜泪 2024-07-24 05:33:16

在 Windows 下,ps2pdf 和其他实用程序作为 .bat 和 .cmd 文件位于 C:\Program Files\gs\gs#.##\lib 中。 这并不明显,特别是当您正在寻找 .exe 文件时。

Under Windows, ps2pdf and other utilities are located in C:\Program Files\gs\gs#.##\lib as .bat and .cmd files. This isn't exactly obvious, especially if you're looking for .exe files.

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