Reputation: 2842
I am using MVC 4 to build a web application. I need to implement a functionality that will convert multiple Tiff images to a single PDF.
I have looked at things like ItextSharp.
Has anyone else done something like this before? what tools/libraries have you used?
Thanks
Upvotes: 0
Views: 2278
Reputation: 10710
I am big fan of ImageMagick. Though it can do so much more than file conversion, it does do that pretty well. Use the .NET library Magick.NET
Here is some sample code to convert to PDF
To test using the command line tool, here is how it's done (from ImageMagick forum):
convert Gears.tif -density 72 Gears.pdf
Upvotes: 1