Start drawing the page to the given bitmap.

Namespace: TallComponents.PDF.Rasterizer
Assembly: TallComponents.PDF.Rasterizer (in TallComponents.PDF.Rasterizer.dll) Version: 3.0.72.2

Syntax

C#
public void Start(
	Bitmap bitmap,
	RenderSettings renderSettings,
	PageBoundary pageBoundary,
	Matrix transformation
)
Visual Basic
Public Sub Start ( _
	bitmap As Bitmap, _
	renderSettings As RenderSettings, _
	pageBoundary As PageBoundary, _
	transformation As Matrix _
)

Parameters

bitmap
Type: System.Drawing..::..Bitmap
The bitmap in which the page will be drawn.
renderSettings
Type: TallComponents.PDF.Rasterizer.Configuration..::..RenderSettings
The render settings that will be used to draw the page.
pageBoundary
Type: TallComponents.PDF.Rasterizer..::..PageBoundary
The page boundary that will be used for drawing. If the page boundary is not specified, PageBoundary.Default will used.
transformation
Type: System.Drawing.Drawing2D..::..Matrix
The transformation that will be applied before the page is drawn.

Remarks

If start is called for a running drawing job, it will stop this job first and then restart the job with the new parameters.

See Also