I have around 1000 pdf filesand I need to convert them to 300 dpi tiff files. What is the best way to do this? If there is an SDK or something or a tool that can be scripted that would be ideal.
|
5
|
|||
|
|
|
|
Use Imagemagick, or better yet, Ghostscript. http://www.ibm.com/developerworks/library/l-graf2/#N10284 has an example for imagemagick, http://www.asmail.be/msg0055376363.html has an example for ghostscript. I would install ghostscript and read the man page for gs to see what exact options are needed and experiment. Good luck |
||||
|
|
|
Using GhostScript from the command line, I've used the following in the past: on Windows:
on *nix:
For a large number of files, a simple batch/shell script could be used to convert an arbitrary number of files... |
||
|
|
|
|
I wrote a little powershell script to go through a directory structure and convert all pdf files to tiff files using ghostscript. Here is my script: $tool = 'C:\Program Files\gs\gs8.63\bin\gswin32c.exe' $pdfs = get-childitem . -recurse | where {$_.Extension -match "pdf"} foreach($pdf in $pdfs) {
} |
||
|
|
|
using python this is what I ended up with
|
|||
|
|
|
|
How about pdf2tiff? http://python.net/~gherman/pdf2tiff.html |
||
|
|
|
http://python.net/~gherman/projects/pdf2tiff/ You could also use pdf2ps, ps2image and then convert from the resulting image to tiff with other utilities (I remember 'paul' [paul - Yet another image viewer (displays PNG, TIFF, GIF, JPG, etc.]) |
||
|
|
|
|
ABCPDF can do so as well -- check out http://www.websupergoo.com/helppdf6net/default.html |
||
|
|
|
|
Disclaimer: work for product I am recommending Atalasoft has a .NET library that can convert PDF to TIFF -- we are a partner of FOXIT, so the PDF rendering is very good. |
|||
|
|
