Table of Contents

Method CreateBitmapCanvas

Namespace
Alternet.Drawing
Assembly
Alternet.UI.Common.dll

CreateBitmapCanvas(SizeD, double, bool)

Creates canvas on the bitmap with the specified size and scaling factor.

public static SkiaGraphics CreateBitmapCanvas(SizeD size, double scaleFactor, bool isTransparent = true)

Parameters

size SizeD

Size of the bitmap.

scaleFactor double

Scaling factor.

isTransparent bool

Whether canvas is transparent.

Returns

SkiaGraphics

CreateBitmapCanvas(SKBitmap, double)

Creates canvas on the specified bitmap.

public static SkiaGraphics CreateBitmapCanvas(SKBitmap bitmap, double scaleFactor)

Parameters

bitmap SKBitmap

Bitmap to create canvas on.

scaleFactor double

Initial scale factor for the canvas.

Returns

SkiaGraphics