C# Класс WinRTXamlToolkit.Imaging.WriteableBitmapBlitBlockExtensions

WriteableBitmap extensions for blitting.
Показать файл Открыть проект

Открытые методы

Метод Описание
BlitBlock ( this target, int targetVerticalOffset, WriteableBitmap source, int sourceVerticalOffset, int verticalBlockHeight, bool autoInvalidate = false ) : void

Blits a vertical block of a source bitmap to a target bitmap of same width.

Описание методов

BlitBlock() публичный статический Метод

Blits a vertical block of a source bitmap to a target bitmap of same width.
BlitBlock only supports copying blocks of pixels between bitmaps of equal size.;source
public static BlitBlock ( this target, int targetVerticalOffset, WriteableBitmap source, int sourceVerticalOffset, int verticalBlockHeight, bool autoInvalidate = false ) : void
target this The target.
targetVerticalOffset int The target vertical offset.
source Windows.UI.Xaml.Media.Imaging.WriteableBitmap The source.
sourceVerticalOffset int The source vertical offset.
verticalBlockHeight int Height of the vertical block.
autoInvalidate bool if set to true the bitmap will auto invalidate.
Результат void