ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Drawing functions
  • Miscellaneous
  • Drawing in PHP
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
Returns the green component of an RGB color.
Example
RGBGreen(RGB(128, 38, 15)) // Returns 38
Syntax
<Result> = RGBGreen(<RGB color>)
<Result>: Integer
Green component of RGB color (included between 0 and 255).
<RGB color>: Integer
Color (24 bits). This color is the result of the following formula:
Color = 65536 * Blue Component + 256 * Green Component + Red Component.
Remarks

Miscellaneous

  • RGB returns the identifier of the color described from its Red, Green and Blue components.
  • RGBRed returns the red component of an RGB color. RGBBlue returns the blue component of an RGB color.
PHP

Drawing in PHP

In PHP, the drawing functions are based on the graphic library GD. This library is commonly used by the PHP hosting companies and therefore it is always enabled. The version of the GD library must be version 2.0.28 (or later). This library can be downloaded from the PHP site.
To enable (if necessary) this library locally, the following elements are required:
  • PHP installed.
  • the PHP.INI file found in the Windows directory must contain the following line: "extension=php_gd2.dll" (instead of ";extension=php_gd2.dll").
  • the php_gd2.dll file must exist in the directory of PHP extensions. This directory is defined in the PHP.INI file by the "extension_dir" variable.
Component: wd290std.dll
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help