See Also

TiffFile Members  | ceTe.DynamicPDF.Imaging Namespace

Requirements

Namespace: ceTe.DynamicPDF.Imaging

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

Assembly: ceTe.DynamicPDF (in ceTe.DynamicPDF.dll)

Language

Visual Basic

C#

Show All

Represents a TIFF image file.

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

Object Model



Inheritance Hierarchy

System.Object
   ceTe.DynamicPDF.Imaging.TiffFile

Syntax

[Visual Basic]
Public Class TiffFile
[C#]
public class TiffFile

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" ); 
    } 
}

Licensing

This class is a DynamicPDF Generator Professional Edition feature. One of the following licenses is required for non-evaluation usage:

Requirements

Namespace: ceTe.DynamicPDF.Imaging

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

Assembly: ceTe.DynamicPDF (in ceTe.DynamicPDF.dll)

See Also

TiffFile Members  | ceTe.DynamicPDF.Imaging Namespace

 

 


© Copyright 2007, ceTe Software