PDF .NET Library Documentation - PDF Technologies, Inc.
This function converts a TIFF file to PDF.
Namespace:
PDFTech
Assembly:
PDFTechLib (in PDFTechLib.dll) Version: 1.0.0.0 (1.7.9.0)
Syntax
C# |
---|
public void TiffToPDF(
string tiffFile
) |
Visual Basic (Declaration) |
---|
Public Sub TiffToPDF ( _
tiffFile As String _
) |
Visual C++ |
---|
public:
void TiffToPDF(
String^ tiffFile
) |
Examples
This sample shows how to convert a multi page tiff file to pdf.
CopyC#
PDFDocument doc = new PDFDocument("sample.pdf");
doc.Pages.Delete(doc.CurrentPage);
doc.TiffToPDF("c:\\sample.tif");
doc.Save();
See Also