ImageConversionOptions.ExpandToFit Property

Determines if expand to fit is enabled

public bool ExpandToFit { get; set; }
Public Property ExpandToFit As Boolean

Property Value

Boolean

Licensing Info

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

Examples

Example shows how to use ExpandToFit property.
Imports ceTe.DynamicPDF.Conversion

Module Module1

Sub Main()

    ' create new instance of ImageConversionOptions.
    Dim conversionOptions As ImageConversionOptions = New ImageConversionOptions(True)
    conversionOptions.ExpandToFit=True   
   ' Create new instance of Converter by providing suitable parameters.
    Dim imageConverter As ImageConverter = New ImageConverter("C:\MyDocument.jpg",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 ImageConversionOptions.
        ImageConversionOptions conversionOptions = new ImageConversionOptions(true);
        conversionOptions.ExpandToFit=true;
        
        // Create new instance of Converter by providing suitable parameters.
        ImageConverter imageConverter = new ImageConverter(@"C:\MyDocument.jpg", conversionOptions);

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

See Also

ImageConversionOptions
ceTe.DynamicPDF.Conversion

In this topic