SKBitmap.TryAllocPixels Method

Definition

Overloads

TryAllocPixels(SKImageInfo)

Allocates the memory for the bitmap using the specified image information.

TryAllocPixels(SKImageInfo, SKBitmapAllocFlags)

Allocates the memory for the bitmap using the specified image information.

TryAllocPixels(SKImageInfo, Int32)

Allocates the memory for the bitmap using the specified image information.

TryAllocPixels(SKImageInfo)

Allocates the memory for the bitmap using the specified image information.

public bool TryAllocPixels (SkiaSharp.SKImageInfo info);

Parameters

info
SKImageInfo

The image information describing the pixels.

Returns

Returns true if the allocation was successful, otherwise false.

Applies to

TryAllocPixels(SKImageInfo, SKBitmapAllocFlags)

Allocates the memory for the bitmap using the specified image information.

public bool TryAllocPixels (SkiaSharp.SKImageInfo info, SkiaSharp.SKBitmapAllocFlags flags);

Parameters

info
SKImageInfo

The image information describing the pixels.

flags
SKBitmapAllocFlags

The additional flags.

Returns

Returns true if the allocation was successful, otherwise false.

Applies to

TryAllocPixels(SKImageInfo, Int32)

Allocates the memory for the bitmap using the specified image information.

public bool TryAllocPixels (SkiaSharp.SKImageInfo info, int rowBytes);

Parameters

info
SKImageInfo

The image information describing the pixels.

rowBytes
Int32

The stride of the pixels being allocated.

Returns

Returns true if the allocation was successful, otherwise false.

Applies to