Convert pdf to png
December 9, 2012 12:04 AM   Subscribe

I have a 1200 page pdf file that I'd like to convert to png image files. I would like each page of the pdf to be converted to a separate png file. What's the easiest way to achieve this? I'm using Windows.
posted by Proginoskes to Computers & Internet (8 answers total) 7 users marked this as a favorite
 
1. Just a quick google gave me the following (assuming, and this is a big if, that your PDF is under 25 MB): http://pdf2jpg.net/ to convert the pdf to jpg.

2. Use 'convert' http://www.imagemagick.org/script/convert.php (these tools are magic, and awesomesauce) in a command line as follows:

for %I in (*.jpg) do convert "%~nI.jpg" "%~nI.png"

If your PDF is larger than 25MB (note: I haven't tried the service in step #1) you'll have to find a different solution for step #1, but step #2 will work for other image types as well.
posted by el io at 12:43 AM on December 9, 2012


I was about to abuse the edit window to add a reference to this tool for offline conversion of the pdf to jpg: http://sourceforge.net/projects/pdf-to-jpg/.

I haven't used the tool and can't vouch for it. (but I'll give another shout out to the utility of imagemagick).
posted by el io at 12:50 AM on December 9, 2012


PDFcreator is a (free) virtual print driver, and this page says it'll save one PNG per printed page.
posted by panmunjom at 1:04 AM on December 9, 2012 [1 favorite]


Imagemagick is great, it's the swiss army chainsaw of image manipulation - see here for the one-shot solution.
posted by Dr Dracator at 1:18 AM on December 9, 2012


I used imagemagic on a job like this a few years back. Was an easy answer - I also use PDF creator. Both are good solutions.
posted by the noob at 3:26 AM on December 9, 2012


PDF-Xchange Viewer will do this for you very easily as well.
posted by greatgefilte at 6:49 AM on December 9, 2012


If you have access to Adobe Acrobat, this is incredibly easy to do. With this many pages, I'd split the document into 4 parts. Then export to PNG by going through the menus: File > Export > Image > PNG
posted by girih knot at 3:22 PM on December 9, 2012


Download a free trial of Acrobat XI Pro (30 day trial). Do the basic signup if need be. There will be no need to give any financial info, just an email at most.

Get the file into a folder and open in AcroPro.
Use the following menu choices.

FILE>>SAVE AS OTHER>>IMAGE>>PNG

Give the initial page a name, the rest will be sequentially named and exported as separate files.

Go get some coffee while it grinds through. Repeat as necessary.
posted by lampshade at 6:05 PM on December 9, 2012


« Older Calling All Metaphilter Mycophiles   |   Why can't I click back to the website I was just... Newer »
This thread is closed to new comments.