SKImage.FromEncodedData Method

Definition

Overloads

FromEncodedData(String)

Creates a new image from an encoded image file.

FromEncodedData(SKData, SKRectI)

Creates a new image from an encoded image wrapped by the data.

FromEncodedData(ReadOnlySpan<Byte>)

Creates a new image from an encoded image buffer.

FromEncodedData(SKData)

Creates a new image from an encoded image wrapped by the data.

FromEncodedData(Byte[])

Creates a new image from an encoded image buffer.

FromEncodedData(SKStream)

Creates a new image from an encoded image stream.

FromEncodedData(Stream)

Creates a new image from an encoded image stream.

FromEncodedData(String)

Creates a new image from an encoded image file.

public static SkiaSharp.SKImage FromEncodedData (string filename);

Parameters

filename
String

The path to an encoded image on the file system.

Returns

The decoded image, or null on error.

Applies to

FromEncodedData(SKData, SKRectI)

Creates a new image from an encoded image wrapped by the data.

public static SkiaSharp.SKImage FromEncodedData (SkiaSharp.SKData data, SkiaSharp.SKRectI subset);

Parameters

data
SKData

The data holding the encoded image.

subset
SKRectI

The bounds for a subset of the image.

Returns

The decoded image, or null on error.

Applies to

FromEncodedData(ReadOnlySpan<Byte>)

Creates a new image from an encoded image buffer.

public static SkiaSharp.SKImage FromEncodedData (ReadOnlySpan<byte> data);

Parameters

data
ReadOnlySpan<Byte>

The buffer holding the encoded image.

Returns

The decoded image, or null on error.

Applies to

FromEncodedData(SKData)

Creates a new image from an encoded image wrapped by the data.

public static SkiaSharp.SKImage FromEncodedData (SkiaSharp.SKData data);

Parameters

data
SKData

The data holding the encoded image.

Returns

The decoded image, or null on error.

Applies to

FromEncodedData(Byte[])

Creates a new image from an encoded image buffer.

public static SkiaSharp.SKImage FromEncodedData (byte[] data);

Parameters

data
Byte[]

The buffer holding the encoded image.

Returns

The decoded image, or null on error.

Applies to

FromEncodedData(SKStream)

Creates a new image from an encoded image stream.

public static SkiaSharp.SKImage FromEncodedData (SkiaSharp.SKStream data);

Parameters

data
SKStream

The stream holding the encoded image.

Returns

The decoded image, or null on error.

Applies to

FromEncodedData(Stream)

Creates a new image from an encoded image stream.

public static SkiaSharp.SKImage FromEncodedData (System.IO.Stream data);

Parameters

data
Stream

The stream holding the encoded image.

Returns

The decoded image, or null on error.

Applies to