|
|
|
|
|
- Coordinates
- Drawing in PHP
- Drawing in Browser code
<Image variable>.DrawCircle (Function) In french: <Variable Image>.DessineCercle Draws a circle or an ellipse in a variable of type Image.
MonImage is Image = "Test.gif"
MonImage.DessineCercle(10, 10, 50, 50, LightYellow, LightBlue)
IMG_MonDessin = MonImage
Syntax
Drawing a circle, specifying all the coordinates of the rectangle containing the circle Hide the details
<Image variable>.DrawCircle(<X1> , <Y1> , <X2> , <Y2> [, <Background color> [, <Line color>]])
<Image variable>: Image variable Name of the Image variable to be used. <X1>: Integer X-coordinate of the upper-left corner of the rectangle containing the circle. These coordinates are expressed in pixels. <Y1>: Integer Y-coordinate of the upper-left corner of the rectangle containing the circle. These coordinates are expressed in pixels. <X2>: Integer X-coordinate of the lower-right corner of the rectangle containing the circle. These coordinates are expressed in pixels. <Y2>: Integer Y-coordinate of the lower-right corner of the rectangle containing the circle. These coordinates are expressed in pixels. <Background color>: Integer or constant (optional) Circle background color. This color can correspond to:If this parameter is not specified, the background color: <Line color>: Integer or constant (optional) Color of the circle line. This color can correspond to:If this parameter is specified, the characteristics defined with <Image variable>.Pen are ignored. The line thickness will be set to 1. If this parameter is not specified, the line color:
Drawing a circle using a Rectangle variable Hide the details
<Image variable>.DrawCircle(<Rectangle> [, <Background color> [, <Line color>]])
<Image variable>: Image variable Name of the Image variable to be used. <Rectangle>: Rectangle variable Name of the Rectangle variable that corresponds to the rectangle containing the circle. <Background color>: Integer or constant (optional) Circle background color. This color can correspond to:If this parameter is not specified, the background color: <Line color>: Integer or constant (optional) Color of the circle line. This color can correspond to:If this parameter is specified, the characteristics defined with <Image variable>.Pen are ignored. The line thickness will be set to 1. If this parameter is not specified, the line color: Remarks Coordinates Coordinates are specified with respect to the upper-left corner of the Image control (coordinates: (0,0)).
Related Examples:
|
Unit examples (WINDEV): The drawing functions
[ + ] Using the main drawing functions of WINDEV to: - Initialize an Image control for drawing - Draw simple shapes - Write a text into a drawing - Change the color in a drawing
|
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|