Image Constructor (UInt32, UInt32, Color)

SFML.Net

Image Constructor (UInt32, UInt32, Color)
Construct the image from a single color

Namespace: SFML.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public Image(
	uint width,
	uint height,
	Color color
)
Public Sub New ( 
	width As UInteger,
	height As UInteger,
	color As Color
)
public:
Image(
	unsigned int width, 
	unsigned int height, 
	Color color
)
new : 
        width : uint32 * 
        height : uint32 * 
        color : Color -> Image

Parameters

width
Type: SystemUInt32
Image width
height
Type: SystemUInt32
Image height
color
Type: SFML.GraphicsColor
Color to fill the image with
Exceptions
ExceptionCondition
LoadingFailedException
See Also