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

Inheritance: IDisposable
Afficher le fichier Open project: debop/NFramework

Méthodes publiques

Méthode Description
Dispose ( ) : void
FastBitmap ( Bitmap bitmap ) : System

생성자

GetColor ( int x, int y ) : Color

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

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

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

Private Methods

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

Method Details

Dispose() public méthode

public Dispose ( ) : void
Résultat void

FastBitmap() public méthode

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

GetColor() public méthode

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

SetColor() public méthode

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