C# 클래스 WinRTXamlToolkit.Imaging.WriteableBitmapFromBitmapImageExtension

WriteableBitmap extensions for creating or populating a WriteableBitmap from a BitmapImage (or rather the source Uri of the image).
파일 보기 프로젝트 열기: xyzzer/WinRTXamlToolkit

공개 메소드들

메소드 설명
LoadFromBitmapImageSourceAsync ( BitmapImage source ) : Task

Creates a new WriteableBitmap from the source URI of the given BitmapImage.

LoadFromBitmapImageSourceAsync ( BitmapImage source, uint decodePixelWidth, uint decodePixelHeight ) : Task

Creates a new WriteableBitmap from the source URI of the given BitmapImage.

LoadFromBitmapImageSourceAsync ( this target, BitmapImage source ) : Task

Loads the WriteableBitmap from the source URI of the given BitmapImage

LoadFromBitmapImageSourceAsync ( this target, BitmapImage source, uint decodePixelWidth, uint decodePixelHeight ) : Task

Loads the WriteableBitmap from the source URI of the given BitmapImage

메소드 상세

LoadFromBitmapImageSourceAsync() 공개 정적인 메소드

Creates a new WriteableBitmap from the source URI of the given BitmapImage.
public static LoadFromBitmapImageSourceAsync ( BitmapImage source ) : Task
source Windows.UI.Xaml.Media.Imaging.BitmapImage The source BitmapImage.
리턴 Task

LoadFromBitmapImageSourceAsync() 공개 정적인 메소드

Creates a new WriteableBitmap from the source URI of the given BitmapImage.
public static LoadFromBitmapImageSourceAsync ( BitmapImage source, uint decodePixelWidth, uint decodePixelHeight ) : Task
source Windows.UI.Xaml.Media.Imaging.BitmapImage The source BitmapImage.
decodePixelWidth uint Width to decode to.
decodePixelHeight uint Height to decode to.
리턴 Task

LoadFromBitmapImageSourceAsync() 공개 정적인 메소드

Loads the WriteableBitmap from the source URI of the given BitmapImage
public static LoadFromBitmapImageSourceAsync ( this target, BitmapImage source ) : Task
target this The target WriteableBitmap.
source Windows.UI.Xaml.Media.Imaging.BitmapImage The source BitmapImage.
리턴 Task

LoadFromBitmapImageSourceAsync() 공개 정적인 메소드

Loads the WriteableBitmap from the source URI of the given BitmapImage
public static LoadFromBitmapImageSourceAsync ( this target, BitmapImage source, uint decodePixelWidth, uint decodePixelHeight ) : Task
target this The target WriteableBitmap.
source Windows.UI.Xaml.Media.Imaging.BitmapImage The source BitmapImage.
decodePixelWidth uint Width to decode to.
decodePixelHeight uint Height to decode to.
리턴 Task