vote up 0 vote down star
1

My stomach churns when I see this kind of output.

and this was my command as suggested by http://stackoverflow.com/questions/75500/best-way-to-convert-pdf-files-to-tiff-files#221341

gswin32c.exe -q -dNOPAUSE -sDEVICE=tiffg4 -sOutputFile=a.tif a.pdf -c quit

What am I doing wrong?

(commercial products will not be considered)

flag

73% accept rate
typo: aweful should be awful – Ken Oct 21 '08 at 11:06

4 Answers

vote up 2 vote down check

tiffg4 is a black&white output device. You should use tiff24nc or tiff12nc as the output device colour PDFs - see ghostscript output devices. These will be uncompressed but you could put the resulting TIFFs through imagemagick or similar to resave as compressed TIFF.

link|flag
Thanks for the colour information. After including Philho's advice about resolution im finding my tif shooting up to 20+ megs. This is way beyond. Making use of imagemagick would reduce this? – Setori Oct 22 '08 at 1:35
Yes, ImageMagick (and many other image manipulation tools) can convert uncomressed TIFF to compressed TIFF. Are you sure you need TIFF? 24-bit PNG is a pretty good choice for screen capture. – Chris Dolan Oct 22 '08 at 3:45
must be tiff sadly, the whole backend system is setup for tiff, a change and the whole thing comes down kicking and screaming. Also i just found out it must be black and white... interfacing with legacy systems can be a little of a headache... pdf would be the best. – Setori Oct 22 '08 at 8:15
vote up 0 vote down

If only we could disable Dither in Ghost Script.

link|flag
vote up 0 vote down

Thanks guys this is what I ended up with

     os.popen(' '.join([
                       self._ghostscriptPath + 'gswin32c.exe', 
                       '-q',
                       '-dNOPAUSE',
                       '-dBATCH',
                       '-r800',
                       '-sDEVICE=tiffg4',
                       '-sPAPERSIZE=a4',
                       '-sOutputFile=%s %s' % (tifDest, pdfSource),
                       ]))
link|flag
vote up 1 vote down

It is quite nice for a fax! ;-)

danio's answer is probably the best, if you need a color copy.

I notice also, from the linked thread, that you omitted to specify DPI for the output, hence the bad look... If you need pure dithered B&W, you should use a higher resolution.

I also got a good looking image using NConvert

nconvert -page 1 -out tiff -dpi 200 -c 2 -o c.tif FMD.pdf

I mention it for the record, because I think you need a license to redistribute it (it is free for personal use otherwise).

link|flag
Not going with Nvonvert, it cant read my pdf document I gave it to convert – Setori Oct 22 '08 at 1:55

Your Answer

Get an OpenID
or

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