Method | Description | |
---|---|---|
Clone ( ) : object |
Creates a new object that is a copy of the current instance.
|
|
Fill ( byte red, byte green, byte blue, byte alpha = 255 ) : void |
Fills the image with the specified color.
|
|
Fill ( |
Fills the image with the specified pixel.
|
|
FromBitmap ( |
Initializes a new instance of the cImage class from a Bitmap instance.
|
|
ToBitmap ( ) : |
Converts this image to a Bitmap instance.
|
|
ToBitmap ( int sx, int sy, int width, int height ) : |
Converts this image to a Bitmap instance.
|
|
cImage ( |
Initializes a new instance of the cImage class from a given one.
|
|
cImage ( |
Initializes a new greyscale instance of the cImage class by filtering a given one.
|
|
cImage ( |
Initializes a new instance of the cImage class by filtering a given one.
|
|
cImage ( int width, int height ) : System.Collections.Concurrent |
Initializes a new instance of the cImage class.
|
|
this ( int x, int y ) : |
Gets or sets the sPixel with the specified X, Y coordinates.
|
public Fill ( byte red, byte green, byte blue, byte alpha = 255 ) : void | ||
red | byte | The red-value. |
green | byte | The green-value. |
blue | byte | The blue-value. |
alpha | byte | The alpha-value. |
return | void |
public Fill ( |
||
pixel | The pixel instance. | |
return | void |
public static FromBitmap ( |
||
bitmap | The bitmap. | |
return |
public ToBitmap ( int sx, int sy, int width, int height ) : |
||
sx | int | The start x. |
sy | int | The start y. |
width | int | The width. |
height | int | The height. |
return |
public cImage ( |
||
sourceImage | The source image. | |
return | System.Collections.Concurrent |
public cImage ( |
||
sourceImage | The source image. | |
colorFilter | byte>.Func | The greyscale filter. |
return | System.Collections.Concurrent |
public cImage ( |
||
sourceImage | The source image. | |
filterFunction | sPixel>.Func | The filter. |
return | System.Collections.Concurrent |
public cImage ( int width, int height ) : System.Collections.Concurrent | ||
width | int | Width of the image. |
height | int | Height of the image. |
return | System.Collections.Concurrent |