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.
|
feedback
|
|
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 | |||||||
feedback
|
|
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... | |||
feedback
|
|
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:
| ||||
|
feedback
|
|
using python this is what I ended up with
| ||||
|
feedback
|
|
ABCPDF can do so as well -- check out http://www.websupergoo.com/helppdf6net/default.html | |||
|
feedback
|
|
1) Install GhostScript 2) Install ImageMagick 3) Create "Convert-to-TIFF.bat" (Windows XP, Vista, 7) and use the following line:
Dragging any number of single-page PDF files onto this file will convert them to compressed TIFFs, at 300 DPI. | |||
|
feedback
|
|
How about pdf2tiff? http://python.net/~gherman/pdf2tiff.html | |||
feedback
|
|
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.]) | |||
|
feedback
|
|
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. | ||||
|
feedback
|
|
Required ghostscript & tiffcp Tested in Ubuntu
| |||
|
feedback
|
|
Maybe also try this? PDF Focus This .Net library allows you to solve the problem :) This code will help (Convert 1000 PDF files to 300-dpi TIFF files in C#):
| ||||
|
feedback
|
|
I like PDFTIFF.com to convert PDF to TIFF, it can handle unlimited pages | |||
|
feedback
|
|
you try also PDF to TIFF Convert it works well for me. | |||
|
feedback
|
|
The PDF Focus .Net can do it in such way: 1 PDF to TIFF
2 PDF to Multipage-TIFF
| ||||
|
feedback
|