ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Print 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
Calculates the width of the image to print (in millimeters). This calculation is performed in relation to the resolution of the selected printer (and not in relation to the screen resolution). No enlargement factor is applied.
Linux Only images in JPEG format can be used.
Example
// Prints the dimensions of the image (in mm)
iPrint("Image width: " + iImageWidth("LOGO.JPG") + "mm")
iPrint("Image height: " + iImageHeight("LOGO.JPG") + "mm")
iEndPrinting()
Syntax

Calculating the width of an image found in a file Hide the details

<Result> = iImageWidth(<Image name>)
<Result>: Real
Width of the image (in millimeters).
<Image name>: Character string
Name and full (or relative) path of image file.
Linux Only images in JPEG format can be used.
WINDEVUser code (UMC)

Calculating the width of an image found in an Image variable Hide the details

<Result> = iImageWidth(<Image>)
<Result>: Real
Width of the image (in millimeters).
<Image>: Image variable
Name of a variable of type Image.
Linux Only images in JPEG format can be used.
Remarks
  • iImageHeight is used to find out the height of the image to print.
  • iImageWidth cannot be used to get the width of a WMF image.
  • The dimensions of an image are returned by BitmapInfo.
Component: wd290prn.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help