Represents a TIFF image file.

For a list of all members of this type, see TiffFile Members


System.Object
public class TiffFile : Object 

Remarks

See the Tiff Images section for more details on TiffFile.

Example

This example shows how to create a PDF out of a Tiff image.

[Visual Basic]
Imports System
Imports ceTe.DynamicPDF
Imports ceTe.DynamicPDF.Imaging

Module MyModule
        
    Sub Main()
        ' Create a TiffFile object from the TIFF image
        Dim myTiffFile As TiffFile = New TiffFile("C:\MyMultipageTiff.tif")
        
        ' Create a document object from the file
        Dim MyDocument As Document = myTiffFile.GetDocument()
        
        ' Save the PDF document
        MyDocument.Draw("C:\MyDocument.pdf")
        
    End Sub
End Module
[C#]
using System;
using ceTe.DynamicPDF;
using ceTe.DynamicPDF.Imaging;

class MyClass
{
    static void Main()
    {
        // Create a TiffFile object from the TIFF image
        TiffFile tiffFile = new TiffFile( @"C:\MyMultipageTiff.tif" );
        
        // Create a document object from the file
        Document document = tiffFile.GetDocument();
        
        // Save the PDF document
        document.Draw( @"C:\MyDocument.pdf" );
    }
}

Requirements

Namespace: ceTe.DynamicPDF.Imaging Namespace

Assembly: DynamicPDF.Generator.[Edition].dll

See Also

TiffFile members | ceTe.DynamicPDF.Imaging Namespace