Méthode | Description | |
---|---|---|
SetPixels ( int width, int height, byte pixels ) : void |
Sets the pixel array of the image.
|
|
SimpleImage ( ) : System |
Initializes a new instance of the SimpleImage class.
|
|
SimpleImage ( |
Initializes a new instance of the SimpleImage class by making a copy from another image.
|
|
SimpleImage ( int width, int height ) : System |
Initializes a new instance of the SimpleImage class with the height and the width of the image.
|
public SetPixels ( int width, int height, byte pixels ) : void | ||
width | int | The new width of the image. /// Must be greater than zero. |
height | int | The new height of the image. /// Must be greater than zero. |
pixels | byte | The array with colors. Must be a multiple /// of four, width and height. |
Résultat | void |
public SimpleImage ( |
||
other | The other, where the clone should be made from. | |
Résultat | System |
public SimpleImage ( int width, int height ) : System | ||
width | int | The width of the image in pixels. |
height | int | The height of the image in pixels. |
Résultat | System |