1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-30 18:17:57 +01:00

gs: add page (#2199)

This commit is contained in:
Wesalius 2018-07-16 14:28:37 +02:00 committed by Owen Voke
parent 6c199ca702
commit 117ce65459

27
pages/linux/gs.md Normal file
View file

@ -0,0 +1,27 @@
# gs
> GhostScript is a PDF and PostScript interpreter.
- To view a file:
`gs -dQUIET -dBATCH {{file.pdf}}`
- Reduce PDF file size to 150 dpi images for reading on a ebook device:
`gs -dNOPAUSE -dQUIET -dBATCH -sDEVICE=pdfwrite -dPDFSETTINGS=/ebook -sOutputFile={{output.pdf}} {{input.pdf}}`
- Convert PDF file (pages 1 through 3) to an image with 150 dpi resolution:
`gs -dQUIET -dBATCH -dNOPAUSE -sDEVICE=jpeg -r150 -dFirstPage={{1}} -dLastPage={{3}} -sOutputFile={{output_%d.jpg}} {{input.pdf}}`
- Extract pages from a PDF file:
`gs -dQUIET -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile={{output.pdf}} {{input.pdf}}`
- Merge PDF files:
`gs -dQUIET -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile={{output.pdf}} {{input1.pdf}} {{input2.pdf}}`
- Convert from PostScript file to PDF file:
`gs -dQUIET -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile={{output.pdf}} {{input.ps}}`