SFML.Graphics.Image.Image C# (CSharp) Method

Image() public method

Construct the image with black color
public Image ( uint width, uint height ) : System
width uint Image width
height uint Image height
return System
        public Image(uint width, uint height) :
            this(width, height, Color.Black)
        {
        }

Same methods

Image::Image ( System.Color pixels ) : System
Image::Image ( Image copy ) : System
Image::Image ( IntPtr cPointer ) : System
Image::Image ( System.Stream stream ) : System
Image::Image ( byte bytes ) : System
Image::Image ( string filename ) : System
Image::Image ( uint width, uint height, System.Color color ) : System
Image::Image ( uint width, uint height, byte pixels ) : System