Method | Description | |
---|---|---|
FillRectangle ( |
Fill rectangle on the specified image.
|
|
FillRectangle ( |
Fill rectangle on the specified image.
|
|
Line ( |
Draw a line on the specified image.
|
|
Line ( |
Draw a line on the specified image.
|
|
Polygon ( |
Draw a polygon on the specified image. The method draws a polygon by connecting all points from the first one to the last one and then connecting the last point with the first one. |
|
Polygon ( |
Draw a polygon on the specified image. The method draws a polygon by connecting all points from the first one to the last one and then connecting the last point with the first one. |
|
Polyline ( |
Draw a polyline on the specified image. The method draws a polyline by connecting all points from the first one to the last one. Unlike Polygon( BitmapData, List{IntPoint}, Color ) method, this method does not connect the last point with the first one. |
|
Polyline ( |
Draw a polyline on the specified image. The method draws a polyline by connecting all points from the first one to the last one. Unlike Polygon( UnmanagedImage, List{IntPoint}, Color ) method, this method does not connect the last point with the first one. |
|
Rectangle ( |
Draw rectangle on the specified image.
|
|
Rectangle ( |
Draw rectangle on the specified image.
|
Method | Description | |
---|---|---|
CheckEndPoint ( int width, int height, IntPoint start, IntPoint &end ) : void | ||
CheckPixelFormat ( PixelFormat format ) : void |
public static FillRectangle ( |
||
imageData | Source image data to draw on. | |
rectangle | Rectangle's coordinates to fill. | |
color | Color | Rectangle's color. |
return | void |
public static FillRectangle ( |
||
image | Source image to draw on. | |
rectangle | Rectangle's coordinates to fill. | |
color | Color | Rectangle's color. |
return | void |
public static Line ( |
||
imageData | Source image data to draw on. | |
point1 | IntPoint | The first point to connect. |
point2 | IntPoint | The second point to connect. |
color | Color | Line's color. |
return | void |
public static Line ( |
||
image | Source image to draw on. | |
point1 | IntPoint | The first point to connect. |
point2 | IntPoint | The second point to connect. |
color | Color | Line's color. |
return | void |
public static Polygon ( |
||
imageData | Source image data to draw on. | |
points | List |
Points of the polygon to draw. |
color | Color | Polygon's color. |
return | void |
public static Polygon ( |
||
image | Source image to draw on. | |
points | List |
Points of the polygon to draw. |
color | Color | Polygon's color. |
return | void |
public static Polyline ( |
||
imageData | Source image data to draw on. | |
points | List |
Points of the polyline to draw. |
color | Color | polyline's color. |
return | void |
public static Polyline ( |
||
image | Source image to draw on. | |
points | List |
Points of the polyline to draw. |
color | Color | polyline's color. |
return | void |
public static Rectangle ( |
||
imageData | Source image data to draw on. | |
rectangle | Rectangle's coordinates to draw. | |
color | Color | Rectangle's color. |
return | void |
public static Rectangle ( |
||
image | Source image to draw on. | |
rectangle | Rectangle's coordinates to draw. | |
color | Color | Rectangle's color. |
return | void |