Possible Duplicate:
How can I extract images from a PDF file?

I am able to extract the images from a PDF file using many Perl modules, but none of them specifies the exact positions of the images being extracted (where the image actually belongs).

Could anyone suggest to me how to extract the images along with their positions?

Thanks in advance.

link|improve this question

75% accept rate
feedback

closed as exact duplicate by casperOne Nov 30 '11 at 19:33

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted

An indirect solution is to use pdfimages to scan the pdf file page by page. If there is an image, at least you will know which page it is in.

For example, you can use pdfinfo to find out the number of pages there are in a given pdf file, and use pdfimages with the -f and -l options to scan a particular page.

link|improve this answer
feedback

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