C# Class NSoft.NFramework.Parallelism.Drawing.FastBitmap

Inheritance: IDisposable
Show file Open project: debop/NFramework

Public Methods

Method Description
Dispose ( ) : void
FastBitmap ( Bitmap bitmap ) : System

생성자

GetColor ( int x, int y ) : Color

지정된 위치의 색상을 구합니다.

SetColor ( int x, int y, Color c ) : void

지정된 위치의 Pixel의 색상을 설정합니다.

Private Methods

Method Description
GetInitialPixelForRow ( int rowNumber ) : PixelData*
InitCurrentPixel ( ) : void
LockBitmap ( ) : void
UnlockBitmap ( ) : void
this ( int x, int y ) : PixelData*

Method Details

Dispose() public method

public Dispose ( ) : void
return void

FastBitmap() public method

생성자
public FastBitmap ( Bitmap bitmap ) : System
bitmap System.Drawing.Bitmap 실제 처리할 Bitmap 인스턴스
return System

GetColor() public method

지정된 위치의 색상을 구합니다.
public GetColor ( int x, int y ) : Color
x int row index
y int column index
return Color

SetColor() public method

지정된 위치의 Pixel의 색상을 설정합니다.
public SetColor ( int x, int y, Color c ) : void
x int
y int
c Color
return void