ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / 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
Modifies the hue, the saturation and the lightness of an image found:
  • in an Image control,
  • in a variable of type Image.
Linux Caution: A specific configuration is required to use this function in Linux. For more details, see The drawings.
Example
// Changes the hue, the saturation and the lightness of the image found in the IMG_Image1 control
dModifyHSL(IMG_Image1, 50, 50, 50)
Syntax
<Result> = dModifyHSL(<Source image> , <Variation of hue> , <Variation of saturation> , <Variation of lightness> [, <Destination image>])
<Result>: Boolean
  • True if the change was performed,
  • False otherwise.
<Source image>: Character string or Image variable
Image to use. The image can correspond to:
  • the name of an Image control.
  • the name of a variable of type Image.
<Variation of hue>: Integer
Value included between -360 and +360. This value will be added to the current hue of each pixel to get a new hue.
<Variation of saturation>: Integer
Value between -100 and +100. This value will be added to the current saturation of each pixel to get a new saturation.
<Variation of lightness>: Integer
Value between -100 and +100. This value will be added to the current lightness of each pixel to get a new lightness.
<Destination image>: Optional character string or Image variable
Image where the transformed image will be drawn. The image can correspond to:
  • the name of an Image control.
  • the name of a variable of type Image.
If this parameter is not specified, the transformation will be performed on the <Source image>.
Remarks
Related Examples:
Modifying the Hue, Saturation and Lightness Unit examples (WINDEV): Modifying the Hue, Saturation and Lightness
[ + ] Process on the images via the WLanguage dModifyHSL function.
This function is used to modify the hue, the saturation and the lightness of an image.
Component: wd290pnt.dll
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 01/15/2024

Send a report | Local help