PdfRasterizerPageList
Represents a list of pages to rasterize.
public class PdfRasterizerPageList
Public Class PdfRasterizerPageList
Inheritance: ObjectPdfRasterizerPageList
Licensing Info
This class is a DynamicPDF Rasterizer feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Rasterizer selected.
- A DynamicPDF Rasterizer for .NET v4.X Developer license.
Examples
This example demonstrates usage of PdfRasterizerPageList class.Imports System
Imports ceTe.DynamicPDF.Rasterizer
Module MyModule
Sub Main()
' Create a PdfRasterizer object.
Dim rasterizer As New PdfRasterizer("InputPdfFile.pdf")
' Set the size.
Dim fixedImageSize As New FixedImageSize(595, 841)
' Getting the output bmp image.
Dim bmp As System.Drawing.Bitmap = rasterizer.Pages(0).DrawToBitmap(BitmapColorFormat.Rgb, fixedImageSize)
' Save the image.
bmp.Save("Output.bmp")
End Sub
End Module
using System;
using ceTe.DynamicPDF.Rasterizer;
class MyClass
{
static void Main(string[] args)
{
// Create a PdfRasterizer object.
PdfRasterizer rasterizer = new PdfRasterizer("InputPdfFile.pdf");
// Set the size.
FixedImageSize fixedImageSize = new FixedImageSize(595, 841);
// Getting the output bmp image.
System.Drawing.Bitmap bmp = rasterizer.Pages[0].DrawToBitmap(BitmapColorFormat.Rgb, fixedImageSize);
// Save the image.
bmp.Save("Output.bmp");
}
}
Properties
Count | Gets the number of pages in page list. |
Item[Int32] | Gets a page by index. |
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) |