Is there a command line tool on linux that would extract figures from a pdf file, and save them in vector format? I know about pdfimages, but that would create a bitmap, and that is not what I need.
Cheers,
v923z
|
|
|
not for images only, as you seem to need, but
http://poppler.freedesktop.org/ http://www.manpagez.com/man/1/pdftocairo/ (manpage) is able to render a pdf page to other vector formats like PS/EPS/SVG assuming you have a pdf page with vectorized images, you can render this page to svg and then copy only image you are interested in note: pdftocairo cannot render multipage pdf to multipage svg if you need to convert to svg several pdf pages you need first to pick this page range and then burst pdf pages into single pdf pages example (if we need to convert pages 1-10 of a pdf file to svg)
finally, with sodipodi or inkscape, you can extract images you are interested from svg rendered pdf page |
|||
|