PDF .NET Library  .NET PDF Component Library. PDF creator, PDF maker.
Home Products Code Library Online Demos Support Buy About Us  
Code Library

How to convert a TIFF file to PDF

The code sample below creates a PDF using a tiff image. If the tiff image has multiple pages to a multi-page PDF document will be created.

c# sample:

PDFDocument MyDocument = new PDFDocument("TiffSample.pdf");

MyDocument.TiffToPDF("sample.tiff");

MyDocument.Save();

Back to PDF Code Library