在 Ghostscript 中设置副本数量
我们正在尝试使用 Ghostscript 命令行工具将 pdf 文件转换为 ps 文件。不知何故,我们找不到参数来设置应打印的份数。 因此,如果我们想打印一个文件两次,我们就必须发送两次,可能应该有一个简单的参数告诉打印机更频繁地打印这个文件,但我找不到它。有人可以帮我吗?
谢谢!
编辑:
转换 PDF -> PS 使用
gswin32c.exe ^
-dSAFER -dBATCH -dNOPAUSE ^
-sDEVICE=pswrite ^
-sOutputFile=out.ps ^
in.pdf
在 Windows 上工作..
we're trying to convert pdf's to ps files with ghostscript using the ghostscript commandline tool. Somehow we can't find a parameter to set the amount of copies that should be printed.
So if we'd want to print a file twice we'd have to send it two times, there should probably be a simple parameter that tells the printer to print this more often, but I can't find it. Can somebody help me out?
Thanks!
edit:
Converting PDF -> PS using
gswin32c.exe ^
-dSAFER -dBATCH -dNOPAUSE ^
-sDEVICE=pswrite ^
-sOutputFile=out.ps ^
in.pdf
Working on windows..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与 PostScript 文件不同,PDF 文件无法设置份数。您没有说如何打印文件,但我怀疑:
... -c "<<
/NumCopies 2>> setpagedevice“-f...”
会起作用。但如果不知道你在做什么,我就无法确定。
PDF files, unlike PostScript files, have no means for setting the number of copies. You don't say how you are printing the file, but I suspect that :
... -c "<<
/NumCopies 2>> setpagedevice" -f..."
would work. But without knowing what you are doing I can't be sure.