ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Controls, pages and windows / Drawing functions
  • Coordinates
  • Using the drawing functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Draws a line composed of multiple segments:
  • in an Image control,
  • in a variable of type Image.
  • WINDEV in a variable of type WDPic (on the background layer),
  • WINDEV in a variable of type picLayer.
The first coordinate indicates the starting point of the first segment, then each coordinate indicates the end of the previous segment and the beginning of the next segment.
Example
dStartDrawing(IMG_Dessin)
// Dessine un trait vert en pointillés d'une épaisseur de 4 pixels
dPen(DarkGreen, 2, 4)
// Ligne composée de 4 segments
dPolyline(4, 10, 100, 50, 60, 80, 90, 150, 13)
dStartDrawing(IMG_Dessin)
dPen(DarkGreen, 2, 4) 
// Dessin d'une ligne à partir d'un tableau de coordonnées de points (syntaxe 2)
tabCoordonnéesXY is array of 0 by 2 int = [[2, 3], [14, 100], [10,70], [50, 80]]
dPolyline(tabCoordonnéesXY)
dPen(IMG_Dessin, DarkGreen, 2, 4) 
tabCoordonnéesXY2 is array of 0 int = [2, 2, 140, 2, 150, 70, 0, 100, 200, 100]
dPolyline(IMG_Dessin, tabCoordonnéesXY2)
Syntax

Building a line point by point Hide the details

dPolyline([<Image>, ] <NbPoint> , <X1> , <Y1> , <X2> , <Y2> [, <Xn> [, <Yn> [, <Line color>]]])
<Image>: Optional control name or optional Image, WDPic or picLayer variable
WindowsLinuxUniversal Windows 10 AppUser code (UMC) Image to use. The image can correspond to:
  • the name of an Image control.
  • the name of a variable of type Image.
  • WINDEV the name of a variable of type WDPic. Only the background layer will be handled.
  • WINDEV the name of a variable of type picLayer.
If this parameter is not specified, it is necessary to define the drawing destination with dStartDrawing.
<NbPoint>: Integer
Number of line segments. This parameter defines the number of <X>, <Y> pairs to specify in the function.
<X1>: Integer
X-coordinate of the first segment of the line. These coordinates are expressed in pixels.
<Y1>: Integer
Y-coordinate of the first segment of the line. These coordinates are expressed in pixels.
<X2>: Integer
X-coordinate of the second segment of the line. These coordinates are expressed in pixels.
<Y2>: Integer
Y-coordinate of the second segment of the line. These coordinates are expressed in pixels.
<Xn>: Optional integer
X-coordinate of the N segment of the line. These coordinates are expressed in pixels.
<Yn>: Optional integer
Y-coordinate of the N segment of the line. These coordinates are expressed in pixels.
<Line color>: Integer or constant (optional)
Line color. This color can correspond to:If this parameter is not specified, the line color:
  • is Transparent if the function dPen has not been used before.
    New in version 2024
    In the case of an Variable type Image, the row will have the black Color..
  • corresponds to the color specified in the last call to dPen.

Building a line via an array of X and Y-coordinates Hide the details

dPolyline([<Image>, ] <Array of coordinates> [, <Line color>])
<Image>: Optional control name or optional Image, WDPic or picLayer variable
WindowsLinuxUniversal Windows 10 AppUser code (UMC) Image to use. The image can correspond to:
  • the name of an Image control.
  • the name of a variable of type Image.
  • WINDEV the name of a variable of type WDPic. Only the background layer will be handled.
  • WINDEV the name of a variable of type picLayer.
If this parameter is not specified, it is necessary to define the drawing destination with dStartDrawing.
<Array of coordinates>: Array of integers or array of points
WLanguage array of integers containing the coordinates of segments that make up the line. The even indices represent the X-coordinates while the odd indices represent the Y-coordinates of the points. These coordinates are expressed in pixels.
<Line color>: Integer or constant (optional)
Line color. This color can correspond to:If this parameter is not specified, the line color:
  • is Transparent if the function dPen has not been used before.
    New in version 2024
    In the case of an Variable type Image, the row will have the black Color..
  • corresponds to the color specified in the last call to dPen.
WindowsLinuxUser code (UMC)

Building a line using a variable of type Polygon Hide the details

dPolyline([<Image>, ] <Polygon> [, <Line color>])
<Image>: Optional control name or optional Image, WDPic or picLayer variable
WindowsLinuxUser code (UMC) Image to use. The image can correspond to:
  • the name of an Image control.
  • the name of a variable of type Image.
  • WINDEV the name of a variable of type WDPic. Only the background layer will be handled.
  • WINDEV the name of a variable of type picLayer.
If this parameter is not specified, it is necessary to define the drawing destination with dStartDrawing.
<Polygon>: Polygon variable
Name of the Polygon variable that describes the different points of the polygon.
<Line color>: Integer or constant (optional)
Line color. This color can correspond to:If this parameter is not specified, the line color:
  • is Transparent if the function dPen has not been used before.
    New in version 2024
    In the case of an Variable type Image, the row will have the black Color..
  • corresponds to the color specified in the last call to dPen.
Remarks

Coordinates

Coordinates are specified with respect to the upper-left corner of the image (coordinates: (0.0)).

Using the drawing functions

The drawing functions can be used according to 2 methods:
  • Method 1: Using dStartDrawing
    • dStartDrawing must be called before any other drawing function. dStartDrawing is used to define the element (Image control or variable) to which the drawing functions will be applied.
    • When drawing on an Image control:
      • The drawing functions operate on a copy ("bitmap") of the image. You can use the drawing functions of Windows (via API or CallDLL32) but these functions must use the DC (Device Context) returned by dStartDrawing.
      • dEndDrawing and dStartDrawing must not be called in the same process.
        The drawing will not be displayed if dEndDrawing and dStartDrawing are called in the same process: it will be automatically erased.
  • WindowsLinuxUniversal Windows 10 AppUser code (UMC) Method 2: indicating the drawing target directly in the syntax (via a parameter)
    The <Image> parameter is used to specify directly the target of the drawing. dStartDrawing becomes useless. This function must be deleted.
Related Examples:
The drawing functions 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
Component: wd290pnt.dll
Minimum version required
  • Version 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 01/18/2024

Send a report | Local help