ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

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
Linux Caution: In Linux, this function requires a specific configuration. For more details, see Drawing in WINDEV, WEBDEV and WINDEV Mobile.
Example
Syntax
WINDEVWEBDEV - Server codeReports and QueriesAndroidiPhone/iPadIOS WidgetMac CatalystJavaUser code (UMC)Ajax

Saving an image in a JPEG file Hide the details

<Result> = <Image name>.SaveJPEG(<File name> [, <Quality> [, <Exif tag>]])
<Result>: Boolean
  • True if the image was saved,
  • False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<Image name>: Image variable
<File name>: Character string
Name and full (or relative) path of JPEG file. A UNC path can be used. The file extension is optional.
Caution:
  • The destination directory must exist in order for the image to be saved.
  • The existence of the JPEG file is not checked. This file is automatically overwritten if it already exists.
<Quality>: Optional integer
Quality of the image saved. Value between 1 and 100 (80 by default). Lower image quality translates into higher image compression rate and smaller file size.
<Exif tag>: Optional constant (or combination of constants)
Save the Exif tags modified by ImageInfoModify:
imgAddThumbnailAdds a thumbnail into the image file (<File name>).
If there is a thumbnail in the image file displayed in the Image control, this constant is not taken into account.
AndroidJava This constant is not available.
imgGrayScaleUsed to save the image in black and white ("Grayscale" display mode).
Android This constant is not available.
imgProgressiveJPEGSaves the image in progressive JPEG format. This format is mainly used for the Web sites. It allows the pages to be loaded faster (the images being loaded and displayed progressively).
Android This constant is not available.
imgSaveTagSaves the Exif tags.
If there is a thumbnail in the image file displayed in the Image control, a new thumbnail is recalculated.
Android This constant can be used only if <Image name> is a variable of type Image. The thumbnail will not be recalculated.
Java This constant is not available.

By default, the Exif tags are not saved, no operation is performed on the thumbnails.
IOS WidgetMac Catalyst This parameter is not available.
New in SaaS
iPhone/iPad This property is now available for iOS applications.
Note: This feature is only available from WINDEV Suite SaaS 2025 - Update 3.
For more details, see Using new features exclusive to WINDEV Suite SaaS 2025.

Saving an image in memory Hide the details

<Result> = <Image name>.SaveJPEG(<inMemory> [, <Quality>])
<Result>: Buffer
Byte string containing the image in JPEG format.
Then this byte string can be assigned to an Image control, saved in a file (fSaveText), sent via a network (with the Socket functions), ...
<Image name>: Image variable
<inMemory>: Constant
inMemory: Constant used to save an image in memory.
<Quality>: Optional integer
Quality of the image saved. Value between 1 and 100 (80 by default). Lower image quality translates into higher image compression rate and smaller file size.
Component: wd300pnt.dll
Minimum version required
  • Version 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/28/2025

Send a report | Local help