ImageConversionOptions.ImageAlignment Property

Determines the alignment of the Image on the page

public ImageAlignment ImageAlignment { get; set; }
Public Property ImageAlignment As ImageAlignment

Property Value

ImageAlignment

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 ImageAlignment property.
Imports ceTe.DynamicPDF.Conversion

Module Module1

Sub Main()

    ' create new instance of ImageConversionOptions.
    Dim conversionOptions As ImageConversionOptions = New ImageConversionOptions(True)
    conversionOptions.ImageAlignment=ImageAlignment.Top    
    
   ' 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.ImageAlignment=ImageAlignment.Top;
        
        // 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