SKImage.FromEncodedData 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
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)
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.