Method | Description | |
---|---|---|
BlitSingleColor ( FastBitmap bitmap, Point location, int test_color, int blit_color ) : void | ||
Dispose ( ) : void |
Call, when you no longer need this fast bitmap nor the bitmap locked with this instance.
|
|
FastBitmap ( |
||
GetColor ( Point point ) : Color | ||
GetColor ( int x, int y ) : Color | ||
GetPixel ( Point point ) : int | ||
GetPixel ( int x, int y ) : int | ||
IsIn ( FastBitmap fast_bitmap, Point basepoint ) : bool |
Does an exact match of this bitmap in fast_bitmap in basepoint.
|
|
IsIn ( FastBitmap fast_bitmap, Point basepoint, int tolerance ) : bool |
Matches until difference is more than total tolerance.
|
|
IsIn ( IEnumerable |
Tests whether this bitmap exists in the collection.
|
|
IsMatch ( FastBitmap fast_bitmap1, FastBitmap fast_bitmap2 ) : bool |
Returns whether these two fast bitmaps match in width, height and pixel data.
|
|
IsMatch ( FastBitmap fast_bitmap1, FastBitmap fast_bitmap2, |
Returns whether these two fast bitmaps match in width, height and pixel data within the given sub rectangle.
|
|
IsMatch ( FastBitmap fast_bitmap1, FastBitmap fast_bitmap2, int total_tolerance ) : bool | ||
LockBitmap ( ) : void | ||
SetPixel ( int x, int y, int color ) : void | ||
UnlockBitmap ( ) : void | ||
this ( int x, int y ) : int |
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
Method | Description | |
---|---|---|
PixelAt ( int x, int y ) : int* |
public BlitSingleColor ( FastBitmap bitmap, Point location, int test_color, int blit_color ) : void | ||
bitmap | FastBitmap | |
location | Point | |
test_color | int | |
blit_color | int | |
return | void |
public FastBitmap ( |
||
subject_bitmap | ||
return | System |
public IsIn ( FastBitmap fast_bitmap, Point basepoint ) : bool | ||
fast_bitmap | FastBitmap | |
basepoint | Point | |
return | bool |
public IsIn ( FastBitmap fast_bitmap, Point basepoint, int tolerance ) : bool | ||
fast_bitmap | FastBitmap | |
basepoint | Point | |
tolerance | int | |
return | bool |
public static IsMatch ( FastBitmap fast_bitmap1, FastBitmap fast_bitmap2 ) : bool | ||
fast_bitmap1 | FastBitmap | |
fast_bitmap2 | FastBitmap | |
return | bool |
public static IsMatch ( FastBitmap fast_bitmap1, FastBitmap fast_bitmap2, |
||
fast_bitmap1 | FastBitmap | |
fast_bitmap2 | FastBitmap | |
sub_rect | ||
return | bool |
public static IsMatch ( FastBitmap fast_bitmap1, FastBitmap fast_bitmap2, int total_tolerance ) : bool | ||
fast_bitmap1 | FastBitmap | |
fast_bitmap2 | FastBitmap | |
total_tolerance | int | |
return | bool |
public SetPixel ( int x, int y, int color ) : void | ||
x | int | |
y | int | |
color | int | |
return | void |