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
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Rotates a WDPic image. All image layers rotate.
Note: To rotate a single layer, use the dRotation function..
Example
// Open a source image
MyWDPicImage is WDPic
MyWDPicImage.FileName = fExeDir() + ["\"] + "Source.png"
 
// Rotate the image
PicRotation(MyWDPicImage, 45)
 
// Save the result
PicSave(MyWDPicImage, fExeDir() + ["\"] + "Result.png")
Syntax

Performing a simple rotation Hide the details

<Result> = PicRotation(<WDPic image> , <Angle> [, <Options>])
<Result>: Boolean
  • True if the rotation was performed,
  • False otherwise.
<WDPic image>: WDPic variable
Name of the WDPic variable that contains the image to use.
<Angle>: Real
Rotation angle (in degrees).
  • If the angle is positive, the image rotates clockwise.
  • If the angle is negative, the image rotates counterclockwise.
<Options>: Integer constant
Rotation options:
drAdaptThe image is flipped and enlarged. Then, its size is reduced to correspond to the initial image size.
drDefault
(default value)
Enlarge the image (if necessary) so that it corresponds to the dimensions of rotated image.
drNoEnlargingThe image is rotated but not enlarged: the image may be truncated.

Performing a rotation while modifying the center of rotation Hide the details

<Result> = PicRotation(<WDPic image> , <Angle> , <X> , <Y> [, <Options>])
<Result>: Boolean
  • True if the rotation was performed,
  • False otherwise.
<WDPic image>: WDPic variable
Name of the WDPic variable that contains the image to use.
<Angle>: Real
Rotation angle (in degrees).
  • If the angle is positive, the image rotates clockwise.
  • If the angle is negative, the image rotates counterclockwise.
<X>: Real
New X-coordinate of the center of rotation.
<Y>: Real
New Y-coordinate of the center of rotation.
<Options>: Optional Integer constant
Rotation options:
drDefault
(Default value)
Enlarge the image (if necessary) so that it corresponds to the dimensions of rotated image.
drNoEnlargingThe image is flipped but not enlarged
Related Examples:
WDPic type Unit examples (WINDEV): WDPic type
[ + ] This example shows how to use the WDPic WLanguage type.
Component: wd300pic.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 10/04/2024

Send a report | Local help