Method | Description | |
---|---|---|
LoadAsync ( |
Loads a BitmapImage asynchronously given a specific file.
|
|
LoadAsync ( |
Loads a BitmapImage asynchronously given a specific folder and file name.
|
|
LoadFromBase64StringAsync ( string img ) : Task |
Loads a BitmapImage from a Base64-encoded string.
|
|
LoadFromBase64StringAsync ( this bitmap, string img ) : Task |
Loads a BitmapImage from a Base64 encoded string.
|
|
SetSourceAsync ( this bitmap, |
Sets the source image for a BitmapImage by opening a given file and processing the result asynchronously.
|
public static LoadAsync ( |
||
file | The file. | |
return | Task |
public static LoadAsync ( |
||
folder | The folder. | |
fileName | string | Name of the file. |
return | Task |
public static LoadFromBase64StringAsync ( string img ) : Task |
||
img | string | The Base64-encoded image string. |
return | Task |
public static LoadFromBase64StringAsync ( this bitmap, string img ) : Task |
||
bitmap | this | The bitmap into which the image will be loaded. |
img | string | The Base64-encoded image string. |
return | Task |
public static SetSourceAsync ( this bitmap, |
||
bitmap | this | The bitmap. |
file | The file. | |
return | Task |