Skip to content

PDFArgbRenderingSurface<T>

Namespace: O2S.Components.PDF4NET.Rendering.RenderingSurfaces

Defines an ARGB rendering surface that uses an array of integers or bytes as storage.

public class PDFArgbRenderingSurface<T> : PDFRenderingSurface, O2S.Components.PDF4NET.Content.IImageDataProvider

Type Parameters

T

Inheritance ObjectPDFRenderingSurfacePDFArgbRenderingSurface<T>
Implements IImageDataProvider

Fields

Constructors

PDFArgbRenderingSurface(Int32, Int32)

Initializes a new PDFArgbRenderingSurface<T> object.

public PDFArgbRenderingSurface(int width, int height)

Parameters

width Int32
Surface width.

height Int32
Surface height.


PDFArgbRenderingSurface()

Initializes a new PDFArgbRenderingSurface<T> object with an empty storage.

public PDFArgbRenderingSurface()

Properties

Bitmap

Gets the surface storage.

public T[] Bitmap { get; }

Property Value

T[]
Array that stores the page image in ARGB format.


Height

Gets or sets the surface height.

public int Height { get; }

Property Value

Int32
The height of the surface in pixels.


Width

Gets the surface width.

public int Width { get; }

Property Value

Int32
The width of the surface in pixels.


Methods