Edit

SKPixmap Constructors

Definition

Overloads

Name Description
SKPixmap()

Creates an empty instance of SKPixmap.

SKPixmap(SKImageInfo, IntPtr)

Creates an instance of SKPixmap.

SKPixmap(SKImageInfo, IntPtr, Int32)

Creates an instance of SKPixmap.

SKPixmap()

Creates an empty instance of SKPixmap.

public SKPixmap();

Applies to

SKPixmap(SKImageInfo, IntPtr)

Creates an instance of SKPixmap.

public SKPixmap(SkiaSharp.SKImageInfo info, IntPtr addr);

Parameters

info
SKImageInfo

The image information of the pixels.

addr
IntPtr

The memory address of the pixels.

Applies to

SKPixmap(SKImageInfo, IntPtr, Int32)

Creates an instance of SKPixmap.

public SKPixmap(SkiaSharp.SKImageInfo info, IntPtr addr, int rowBytes);

Parameters

info
SKImageInfo

The image information of the pixels.

addr
IntPtr

The memory address of the pixels.

rowBytes
Int32

The number of bytes per row.

Applies to