GS
-
Combine multiple PDF files to a pdf fileComputer/linux 2017. 8. 28. 21:58
In the case, one want to create one pdf file from N pdf files, gs will save us to do this quickly. For example, one has the following pdf files : 1.pdf2.pdf....10.pdf And would like to have result.pdf from these pdf files, the following command will create the result.pdf file gs -q -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=result.pdf -dBATCH file{1..10}.pdf
-
Icy cold Bohemian style beer and LinuxComputer/linux 2008. 3. 31. 22:08
When I learn more linux, I feel as if I am drinking icy cold Bohemian style beer on a roof. If you know a lot of "The Shawshank Redemption", you probably know what I mean. The corresponding video might be found on http://www.youtube.com/watch?v=w4oPFXWXaDE The true Bohemian style beer is http://en.wikipedia.org/wiki/Pilsner_Urquell. Extract each page from an electronic pdf or ps file in oder to ..
-
Trouble eps file created by AutoCAD in LaTeXComputer/linux 2007. 10. 31. 06:58
See the new post which might be what you want to find. 2008/01/30 - [computer] - eps file by AutoCAD -------------------------------------------------------------------------------------------------------------------------------------------- There is an blank page, which include the eps file that is created by AutoCAD, in ps file, which is created by LaTeX. I installed three different gs on my l..
-
How to save each page of a pdf file to eps fileComputer/linux 2007. 8. 16. 00:32
Sometimes, I want to extract some plot or graphical object s from pdf file such as data sheet. The Inkscape can handle eps file in Linux. With the following gs command, I can extract graphical information from pdf file. gs -dSAFTER -dBATCH -dNOPAUSE -r300 -sDEVICE=epswrite -sOutputFile=result-%02d.eps input.pdf xterm output example AFPL Ghostscript 8.14 (2004-02-20) Copyright (C) 2004 artofcode ..