I want to convert PDF to SVG please suggest some libraries/executable that will be able to do this efficiently. I have written my own java program using the apache PDFBox an
pdftk 82page.pdf burst sh to-svg.sh
contents of to-svg.sh
to-svg.sh
#!/bin/bash FILES=burst/* for f in $FILES do inkscape -l "$f.svg" "$f" done