Quote:
Originally Posted by smrcis
Hi, I'm trying to find any tool or toolkit for converting SVG to PDF or EPS.
Do you have any idea?
|
Well I hope by now you have figure it out, however since I have found no linux-friendly
converter I got a path of my own!
1) Print form firefox in a .ps file: file->print->Print_to_File
once the form opens ensure to click on the "options" tab and change all header
and footer fields to "--blank--" (to avoid adding url info etc)
2) run ps2eps or ps2epsi on the resultant ps file:
bash$ ps2eps -l -B -s b0 -c -n <infile.eps> <outfile.eps>
and a bash alias for that:
svgps2eps='ps2eps -l -B -s b0 -c -n'
DONE!!!
Notes:
1) Tested with google-docs cvg files and open-office/latex methode works nicelly.
2) Ensure the printed cvg file from firefox is only one page for ps2eps to handle it!
Happy converting!