共用方式為


SKBitmap.DecodeBounds 方法

定義

多載

DecodeBounds(String)

解碼指定檔案名的點陣圖資訊。

DecodeBounds(Stream)

使用指定的資料流程來解碼點陣圖資訊。

DecodeBounds(ReadOnlySpan<Byte>)
DecodeBounds(SKStream)

使用指定的資料流程來解碼點陣圖資訊。

DecodeBounds(SKData)

使用指定的資料來解碼點陣圖資訊。

DecodeBounds(Byte[])

使用指定的位元組緩衝區來解碼點陣圖資訊。

DecodeBounds(String)

解碼指定檔案名的點陣圖資訊。

public static SkiaSharp.SKImageInfo DecodeBounds (string filename);

參數

filename
String

要解碼之點陣圖的檔案名。

傳回

解碼的點陣圖資訊,如果發生錯誤,則 Empty 為 。

適用於

DecodeBounds(Stream)

使用指定的資料流程來解碼點陣圖資訊。

public static SkiaSharp.SKImageInfo DecodeBounds (System.IO.Stream stream);

參數

stream
Stream

要解碼的資料流程。

傳回

解碼的點陣圖資訊,如果發生錯誤,則 Empty 為 。

適用於

DecodeBounds(ReadOnlySpan<Byte>)

public static SkiaSharp.SKImageInfo DecodeBounds (ReadOnlySpan<byte> buffer);

參數

buffer
ReadOnlySpan<Byte>

傳回

適用於

DecodeBounds(SKStream)

使用指定的資料流程來解碼點陣圖資訊。

public static SkiaSharp.SKImageInfo DecodeBounds (SkiaSharp.SKStream stream);

參數

stream
SKStream

要解碼的資料流程。

傳回

解碼的點陣圖資訊,如果發生錯誤,則 Empty 為 。

適用於

DecodeBounds(SKData)

使用指定的資料來解碼點陣圖資訊。

public static SkiaSharp.SKImageInfo DecodeBounds (SkiaSharp.SKData data);

參數

data
SKData

要解碼的資料。

傳回

解碼的點陣圖資訊,如果發生錯誤,則 Empty 為 。

適用於

DecodeBounds(Byte[])

使用指定的位元組緩衝區來解碼點陣圖資訊。

public static SkiaSharp.SKImageInfo DecodeBounds (byte[] buffer);

參數

buffer
Byte[]

要解碼的位元組緩衝區。

傳回

解碼的點陣圖資訊,如果發生錯誤,則 Empty 為 。

適用於