C# Class Nexus.Graphics.WriteableBitmapWrapper

With thanks to http://writeablebitmapex.codeplex.com/
Exibir arquivo Open project: tgjones/nexus Class Usage Examples

Public Methods

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

Private Methods

Method Description
GetPixels ( ) : int[]

Method Details

Clear() public method

Fills the whole WriteableBitmap with an empty color (0).
public Clear ( ) : void
return void

Clear() public method

Fills the whole WriteableBitmap with a color.
public Clear ( Nexus.Graphics.Colors.Color color ) : void
color Nexus.Graphics.Colors.Color The color used for filling.
return void

GetPixel() public method

Gets the color of the pixel at the x, y coordinate as a Color struct.
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

Invalidate() public method

public Invalidate ( ) : void
return void

SetPixel() public method

Sets the color of the pixel.
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

WriteableBitmapWrapper() public method

public WriteableBitmapWrapper ( System.Windows.Media.Imaging.WriteableBitmap source ) : System
source System.Windows.Media.Imaging.WriteableBitmap
return System

WriteableBitmapWrapper() public method

public WriteableBitmapWrapper ( int width, int height ) : System
width int
height int
return System