Questions tagged «ghostscript»

1
将pdf转换为其他页面大小(美国字母-> A4)
我正在尝试打印一个简单的US Letter文档,但是由于某些原因,当每个列表打印多页时,我只是无法设法将其正确地适合A4。 我尝试使用以下方法转换pdf: gs -o print.pdf -sDEVICE=pdfwrite -sPAPERSIZE=a4 -dFIXEDMEDIA -pPDFFitPage -dCompatibilityLevel=1.4 input.pdf 但这似乎对文档没有任何影响,但仍显示为美国字母。 任何方式如何将pdf转换为A4格式?

5
如何将彩色pdf转换为黑白?
我想将一个带有一些彩色文本和图像的pdf转换为另一个只有黑白的pdf,以减小其尺寸。此外,我想将文本保留为文本,而不变换图片中的页面元素。我尝试了以下命令: convert -density 150 -threshold 50% input.pdf output.pdf 在另一个问题中找到了一个link,但它确实做了我不想要的:输出中的文本被转换为较差的图像,并且不再可以选择。我尝试了Ghostscript: gs -sOutputFile=output.pdf \ -q -dNOPAUSE -dBATCH -dSAFER \ -sDEVICE=pdfwrite \ -dCompatibilityLevel=1.3 \ -dPDFSETTINGS=/screen \ -dEmbedAllFonts=true \ -dSubsetFonts=true \ -sColorConversionStrategy=/Mono \ -sColorConversionStrategyForImages=/Mono \ -sProcessColorModel=/DeviceGray \ $1 但是它给了我以下错误信息: ./script.sh: 19: ./script.sh: output.pdf: not found 还有其他创建文件的方法吗?


1
如何使Ghostscript不会擦除PDF元数据
Ghostscript像其他方法一样擦拭PDF元数据author, title, subject。如何告诉ghostscript不要触摸元数据?我按如下方式调用它: gs \ -dBATCH \ -dNOPAUSE \ -sOutputFile=<output_file> \ -sDEVICE=pdfwrite \ -dPDFSETTINGS=/ebook \ <input_file>
10 pdf  ghostscript 

1
如何在横向模式下(理想情况下使用ghostscript)将pdf转换为4-up?
我有处于横向模式的pdf幻灯片,并想创建一个新的pdf文件,其中包含4-up幻灯片(再次处于横向模式),如下所示: ----------------- | 1 | 2 | ----------------- | 3 | 4 | ----------------- 我知道有pdfjam(可以像这样使用pdfjam --fitpaper true --nup 2x2 --delta '1mm 1mm' --scale 0.98 infile.pdf),但是它不会保留超链接,但是会保留gs。我想知道如何使用它gs来完成任务(?) 另外,我主要使用4-up打印幻灯片。我无法设法lpr实现这一目标。如果有人对此有想法,这也将很有趣。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.