Image Constructor (Int32, Int32)

CVB.Net Documentation
Creates an uninitialized image with the given width and height.

Namespace:  Stemmer.Cvb
Assembly:  Stemmer.Cvb (in Stemmer.Cvb.dll) Version: 14.0.0.0
Syntax

public Image(
	int width,
	int height
)

Parameters

width
Type: SystemInt32
Width of the image in pixels.
height
Type: SystemInt32
Height of the image in pixels.
Exceptions

ExceptionCondition
ArgumentOutOfRangeExceptionIf width, height are negative.
InsufficientMemoryExceptionIf not enough memory is available to create the image.
Remarks

The image has a single plane, 8 bits per pixel UInt.
See Also

Reference