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

Image() public method

Construct the image from a single color
public Image ( uint width, uint height, System.Color color ) : System
width uint Image width
height uint Image height
color System.Color Color to fill the image with
return System
        public Image(uint width, uint height, Color color) :
            base(sfImage_createFromColor(width, height, color))
        {
            if (CPointer == IntPtr.Zero)
                throw new LoadingFailedException("image");
        }

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
Image::Image ( uint width, uint height, byte pixels ) : System