Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

1 Answer

not for images only, as you seem to need, but

  • pdftocairo

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)

pdftk file.pdf cat 1-10 output 1-10.pdf

pdftk 1-10.pdf burst

for f in *.pdf; do pdftocairo -svg $f; done

finally, with sodipodi or inkscape, you can extract images you are interested from svg rendered pdf page

share|improve this answer
Thanks for the comments! However, from what I have read, it seems to me that all these methods would require human intervention. What I was looking for is a tool that takes a pdf file, and returns all the figures contained in it. Exactly as pdfimages would do, with the exception that vector images are returned as vector images, and not as bitmaps. – v923z Mar 28 '12 at 11:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.