C# Class Nexus.Graphics.WriteableBitmapWrapper

With thanks to http://writeablebitmapex.codeplex.com/
Afficher le fichier Open project: tgjones/nexus Class Usage Examples

Méthodes publiques

Méthode 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

Méthode Description
GetPixels ( ) : int[]

Method Details

Clear() public méthode

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

Clear() public méthode

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.
Résultat void

GetPixel() public méthode

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.
Résultat Nexus.Graphics.Colors.Color

Invalidate() public méthode

public Invalidate ( ) : void
Résultat void

SetPixel() public méthode

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.
Résultat void

WriteableBitmapWrapper() public méthode

public WriteableBitmapWrapper ( System.Windows.Media.Imaging.WriteableBitmap source ) : System
source System.Windows.Media.Imaging.WriteableBitmap
Résultat System

WriteableBitmapWrapper() public méthode

public WriteableBitmapWrapper ( int width, int height ) : System
width int
height int
Résultat System