ReadableBitmapDataExtensionsToSKBitmap(IReadableBitmapData) Method

Converts the specified source to an SKBitmap.

Definition

Namespace: KGySoft.Drawing.SkiaSharp
Assembly: KGySoft.Drawing.SkiaSharp (in KGySoft.Drawing.SkiaSharp.dll) Version: 10.0.0-rc.1
C#
public static SKBitmap ToSKBitmap(
	this IReadableBitmapData source
)

Parameters

source  IReadableBitmapData
The source IReadableBitmapData instance to convert.

Return Value

SKBitmap
An SKBitmap instance that has the same content as the specified source.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IReadableBitmapData. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

  Note

This method adjusts the degree of parallelization automatically, blocks the caller, and does not support cancellation or reporting progress. Use the ToSKBitmapAsync for asynchronous call and to adjust parallelization, set up cancellation and for reporting progress.

Exceptions

See Also