TiffConversionOptions

Defines properties and methods that are needed for a Tiff Conversion

public class TiffConversionOptions : ImageConversionOptions
Public Class TiffConversionOptions
    Inherits ImageConversionOptions

Inheritance: ObjectConversionOptionsImageConversionOptionsTiffConversionOptions

Licensing Info

This class is a DynamicPDF Converter feature. One of the following is required for non-evaluation usage:

Examples

Example shows how to use TiffConversionOptions.
Imports ceTe.DynamicPDF.Conversion

Module Module1

Sub Main()

    ' create new instance of TiffConversionOptions.
    Dim conversionOptions As TiffConversionOptions = New TiffConversionOptions(True)
    
   ' Create new instance of Converter by providing suitable parameters.
    Dim imageConverter As ImageConverter = New ImageConverter("C:\MyDocument.tiff",conversionOptions)

    ' Call Convert method to start conversion
    imageConverter.Convert("C:\MyOutput.pdf")

End Sub
 
End Module
using ceTe.DynamicPDF.Conversion;

class MyClass
{
    static void Main()
    {
        // create new instance of TiffConversionOptions.
        TiffConversionOptions conversionOptions = new TiffConversionOptions(true);
         
        
        // Create new instance of Converter by providing suitable parameters.
        ImageConverter imageConverter = new ImageConverter(@"C:\MyDocument.tiff", conversionOptions);

        //Call Convert method to start conversion
        imageConverter.Convert(@"C:\MyOutput.pdf");
    }
}

Constructors

TiffConversionOptions([Optional] Boolean)Initializes a new instance of the TiffConversionOptions class.
TiffConversionOptions(Double, Double, Double)Initializes a new instance of the TiffConversionOptions class.
TiffConversionOptions(Double, Double, Double, Double)Initializes a new instance of the TiffConversionOptions class.
TiffConversionOptions(Double, Double, Double, Double, [Optional] Boolean)Initializes a new instance of the TiffConversionOptions class.
TiffConversionOptions(PageSize, PageOrientation, Double)Initializes a new instance of the TiffConversionOptions class.
TiffConversionOptions(PageSize, PageOrientation, Double, Double, [Optional] Boolean)Initializes a new instance of the TiffConversionOptions class.

Properties

AppendToPdfGets or sets the boolean value to specify if append to pdf conversionOptions to be enabled.
(Inherited from ConversionOptions)
AuthorGets or sets the author meta data for the converted PDF.
(Inherited from ConversionOptions)
BottomMarginGets or sets the bottom margin of the page.
(Inherited from ConversionOptions)
CancelTokenGets or sets a CancellationToken for conversion task.
(Inherited from ConversionOptions)
CreatorGets or sets the creator meta data for the converted PDF.
(Inherited from ConversionOptions)
ExpandToFitDetermines if expand to fit is enabled
(Inherited from ImageConversionOptions)
HeightGets or sets the height of the page in points.
(Inherited from ConversionOptions)
ImageAlignmentDetermines the alignment of the Image on the page
(Inherited from ImageConversionOptions)
ImageSizeAsPageSizeDetermines if Image is same size as of page
(Inherited from ImageConversionOptions)
KeywordsGets or sets the keywords meta data for the converted PDF.
(Inherited from ConversionOptions)
LeftMarginGets or sets the left margin of the page in points.
(Inherited from ConversionOptions)
PageRangereturns the page range
PaperKindGets or sets paper kind for the pages properties.
(Inherited from ConversionOptions)
ProducerGets or sets the producer meta data for the converted PDF.
(Inherited from ConversionOptions)
RightMarginGets or sets the right margin of the page in points.
(Inherited from ConversionOptions)
ShrinkToFitDetermines is shrink to fit is enabled
(Inherited from ImageConversionOptions)
SubjectGets or sets the subject meta data for the converted PDF.
(Inherited from ConversionOptions)
TitleGets or sets the title meta data for the converted PDF.
(Inherited from ConversionOptions)
TopMarginGets or sets the top margin of the page in points.
(Inherited from ConversionOptions)
WidthGets or sets the width of the page in points.
(Inherited from ConversionOptions)

Methods

Equals(Object)Determines whether the specified Object is equal to the current Object .
(Inherited from Object)
GetHashCode()Serves as a hash function for a particular type.
(Inherited from Object)
GetType()Gets the Type of the current instance.
(Inherited from Object)
ToString()Returns a String that represents the current Object .
(Inherited from Object)

See Also

ceTe.DynamicPDF.Conversion

In this topic