Posts Tagged ‘pdf’

Converting between SVG, EPS, and PDF

Tuesday, February 12th, 2008

Sometimes you want to be able to tweak a plot in R that was saved as a PDF or an EPS.

Use this to convert an eps into svg for editing in Inkscape:

pstoedit -f plot-svg input.eps output.svg

Then save the SVG in Inkscape as a “Plain SVG”, and use

convert input.svg output.pdf

Split the pages out of a PDF, or merge PDFs into one

Sunday, January 27th, 2008

Using the free open source program PDF Toolkit, you can operate on PDFs quite easily. (more…)