10/26/2011 ~ 1 min read

Ghostscript


> I was just wondering if anyone had written a program to go from a pdf > file to a tif file or similar conversion This can be done with ImageMagick (convert a.pdf a.tif) or Aladdin Ghostscript. Here are examples for converting in both directions using Ghostscript: (use Aladdin Ghostscript version 5.02 or newer with PDF) pdf2tiff$ gs -q -dNOPAUSE -sDEVICE=tiffg4 -sOutputFile=a.tif a.pdf -c quit tiff2pdf$ tiff2ps -2 a.tif | gs -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=a.pdf - -c quit


Headshot of Matthew Hippely

Hi, I’m Matthew. I live in Ventura County, and spend my time thinking about systems, software, and how things evolve over time.

You can find me on GitHub, LinkedIn, or read more about me here.