Method | Description | |
---|---|---|
Clear ( ) : void |
Fills the whole WriteableBitmap with an empty color (0).
|
|
Clear ( Nexus.Graphics.Colors.Color color ) : void |
Fills the whole WriteableBitmap with a color.
|
|
GetPixel ( int x, int y ) : Nexus.Graphics.Colors.Color |
Gets the color of the pixel at the x, y coordinate as a Color struct.
|
|
Invalidate ( ) : void | ||
SetPixel ( int x, int y, Nexus.Graphics.Colors.Color color ) : void |
Sets the color of the pixel.
|
|
WriteableBitmapWrapper ( System.Windows.Media.Imaging.WriteableBitmap source ) : System | ||
WriteableBitmapWrapper ( int width, int height ) : System |
Method | Description | |
---|---|---|
GetPixels ( ) : int[] |
public Clear ( Nexus.Graphics.Colors.Color color ) : void | ||
color | Nexus.Graphics.Colors.Color | The color used for filling. |
return | void |
public GetPixel ( int x, int y ) : Nexus.Graphics.Colors.Color | ||
x | int | The x coordinate of the pixel. |
y | int | The y coordinate of the pixel. |
return | Nexus.Graphics.Colors.Color |
public SetPixel ( int x, int y, Nexus.Graphics.Colors.Color color ) : void | ||
x | int | The x coordinate (row). |
y | int | The y coordinate (column). |
color | Nexus.Graphics.Colors.Color | The color. |
return | void |
public WriteableBitmapWrapper ( System.Windows.Media.Imaging.WriteableBitmap source ) : System | ||
source | System.Windows.Media.Imaging.WriteableBitmap | |
return | System |
public WriteableBitmapWrapper ( int width, int height ) : System | ||
width | int | |
height | int | |
return | System |