From 117ce654590f8c1d9e36c4c023e71f16030cbbcd Mon Sep 17 00:00:00 2001 From: Wesalius Date: Mon, 16 Jul 2018 14:28:37 +0200 Subject: [PATCH] gs: add page (#2199) --- pages/linux/gs.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pages/linux/gs.md diff --git a/pages/linux/gs.md b/pages/linux/gs.md new file mode 100644 index 000000000..ed5d9de94 --- /dev/null +++ b/pages/linux/gs.md @@ -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}}`