ImageDrawerDrawLine Method (Image, RgbColor, Int32, Int32, Int32, Int32, Int32)

CVB.Net Documentation
Draws a line on all planes of the given image.

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

public static void DrawLine(
	Image image,
	RgbColor color,
	int thickness,
	int x1,
	int y1,
	int x2,
	int y2
)

Parameters

image
Type: Stemmer.CvbImage
Image to draw on.
color
Type: Stemmer.CvbRgbColor
Intensity value to draw.
thickness
Type: SystemInt32
Line thickness in pixels.
x1
Type: SystemInt32
X component of start point.
y1
Type: SystemInt32
Y component of start point.
x2
Type: SystemInt32
X component of end point.
y2
Type: SystemInt32
Y component of end point.
Exceptions

ExceptionCondition
ArgumentNullExceptionimage is null (Nothing in Visual Basic).
ObjectDisposedExceptionImage of given image was disposed.
ArgumentExceptionThe thickness is smaller than one or the length of color is not equal to the plane count.
Remarks

Only works on three-plane images (alpha component is ignored).
See Also

Reference