SKBitmap.TryAllocPixels Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.