EPS
-
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 ..
-
How to fix the wrong bounding box information in eps files automatically with pythonComputer/python 2007. 11. 8. 07:21
To fix the wrong bounding box information in the eps files, I use the following method 2007/05/13 - [computer/linux] - How to create a stand alone eps file by using pstricks However, whenever I fix problems, I have to do the same procedure. It was very cumbersome procedures. I decide to make a lazy program, which do the same thing automatically. Here my second python script : #!/usr/bin/python #..
-
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 ..