BitmapDataFactoryLoadAsync(Stream, WorkingColorSpace, TaskConfig) Method

Loads a managed IReadWriteBitmapData instance from the specified stream asynchronously that was saved by the BitmapDataExtensions.Save method.

Definition

Namespace: KGySoft.Drawing.Imaging
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 10.0.0-rc.1
C#
public static Task<IReadWriteBitmapData?> LoadAsync(
	Stream stream,
	WorkingColorSpace workingColorSpace,
	TaskConfig? asyncConfig = null
)

Parameters

stream  Stream
The stream to load the bitmap data from.
workingColorSpace  WorkingColorSpace
Specifies the preferred color space that should be used when working with the loaded bitmap data.
See the Remarks section of the WorkingColorSpace enumeration for more details.
asyncConfig  TaskConfig  (Optional)
The configuration of the asynchronous operation such as cancellation, reporting progress, etc. When Progress is set in this parameter, then this library always passes a DrawingOperation instance to the generic methods of the IAsyncProgress interface. This parameter is optional.
Default value: .

Return Value

TaskIReadWriteBitmapData
A Task that represents the asynchronous operation, which could still be pending. its result can be , if the operation was canceled and the ThrowIfCanceled property of the asyncConfig parameter was .

Remarks

This method is not a blocking call, though the operation is not parallelized and the MaxDegreeOfParallelism property of the asyncConfig parameter is ignored.

See Also