DpiImageSize

Represents a DPI image size.

public class DpiImageSize : ImageSize
Public Class DpiImageSize
    Inherits ImageSize

Inheritance: ObjectImageSizeDpiImageSize

Licensing Info

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

Examples

This example demonstrates how to rasterize a pdf document to a specific DPI.

Imports System
Imports ceTe.DynamicPDF.Rasterizer

Module MyModule

    Sub Main()
    
        ' Create PdfRasterizer object.
        Dim rasterizer As PdfRasterizer = New PdfRasterizer("InputPdfFile.pdf") 			

        ' Create a PngImageFormat object.
        Dim pngImageFormat As PngImageFormat = New PngImageFormat(PngColorFormat.Rgb)
 
        ' Create a ImageSize object.
        Dim ImageSize As DpiImageSize = New DpiImageSize(72.0F, 72.0F)

        ' Save the image.
        rasterizer.Draw("Output.png", pngImageFormat, ImageSize)
		
    End Sub
End Module
using System;
using ceTe.DynamicPDF.Rasterizer;

class MyClass
{
    static void Main(string[] args)
    {
        // Create PdfRasterizer object.
        PdfRasterizer rasterizer = new PdfRasterizer("InputPdfFile.pdf");

        // Create a PngImageFormat object.
        PngImageFormat pngImageFormat = new PngImageFormat(PngColorFormat.Rgb);

        // Create a ImageSize object.
        DpiImageSize imagesize = new DpiImageSize(72.0f, 72.0f);

        // Save the image.
        rasterizer.Draw("Output.png", pngImageFormat, imagesize);
    }
}

Constructors

DpiImageSize(Single, Single)Initializes a new instance of the DpiImageSize class.

Properties

HorizontalDpiGets or sets the horizontal resolution of the image.
VerticalDpiGets or sets the vertical resolution of the image.

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.Rasterizer

In this topic