C# 클래스 WinRTXamlToolkit.Imaging.WriteableBitmapBlitBlockExtensions

WriteableBitmap extensions for blitting.
파일 보기 프로젝트 열기: xyzzer/WinRTXamlToolkit

공개 메소드들

메소드 설명
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