ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Drawing functions
  • Coordinates
  • Drawing in an image with opacity
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
Identifies the opacity of a pixel in an image (in a variable of type Image) with an Alpha channel.
Linux Caution: A specific configuration is required to use this function in Linux. For more details, see The drawings.
Example
MyImage is Image = "Test.gif"
// Identify the opacity of the pixel (15, 25)
// on the Image variable
ResOpacity = MyImage.PixelOpacity(15, 25)
IMG_MyDrawing = MyImage
Syntax
<Result> = <Image variable>.PixelOpacity(<X-coordinate> , <Y-coordinate>)
<Result>: Integer
Opacity of specified pixel (included between 0 for transparent and 255 for opaque).
<Image variable>: Image variable
Name of the Image variable to be used.
<X-coordinate>: Integer
Horizontal position of pixel to use.
<Y-coordinate>: Integer
Vertical position of pixel to use.
Remarks

Coordinates

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

Drawing in an image with opacity

To specify that the drawing in the image supports opacity (Alpha channel), use <Image variable>.StartDrawing and the dWithOpacity constant.
Component: wd290obj.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