tags:

views:

958

answers:

2

Is there a library (preferably open source - similar to PDFSharp) that can be used to programmaticly convert a PDF to a TIF (using .net)?

+5  A: 

ImageMagick is what you want. .NET bindings can be found here: http://midimick.com/magicknet/

Adam Rosenfield
+1  A: 

http://www.rgagnon.com/gp/gp-0007.html shows how to use GhostScript to convert from PDF to TIF.

Alternatively, you could use a TIFF printer driver and just send the PDF to the printer and save the result. A quick Google show's there are many available.

JeffFoster