ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Drawing functions
  • Image found in a Web Camera control
  • Drawing in browser code
  • Pattern and PHP
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
Saves an image:
  • in a BMP file.
  • in memory.
This image corresponds to the image found:
  • in an Image control.
  • in a variable of type Image.
    WEBDEV - Browser codePHP This type of variable is not available.
  • in a Bar Code control.
    WEBDEV - Server codeLinuxPHP The Bar Code controls are not available in this version. Therefore, no image found in a Bar Code control can be saved.
  • in a Web Camera control.
Remarks:
  • Only the visible part of the Image control is saved.
  • This function can only be used to save the images for screen resolutions up to 32 bits.
  • This function cannot be used with the Image controls found in the reports.
Linux Caution: A specific configuration is required to use this function in Linux. For more details, see The drawings.
WEBDEV - Browser code In browser code, this function can only be used to save an image in memory.
// Saves in memory the image found in "IMG_ImageDrawing"
ResSave = dSaveImageBMP(IMG_ImageDrawing, inMemory)
WINDEVWEBDEV - Server codeReports and QueriesWindowsUser code (UMC)PHPAjax
// Saves the image found in "IMG_ImageDrawing" in "C:\Documents\Image.BMP"
ResSave = dSaveImageBMP(IMG_ImageDrawing,  "C:\Documents\Image.BMP")
Syntax
WINDEVWEBDEV - Server codeReports and QueriesUniversal Windows 10 AppiPhone/iPadIOS WidgetMac CatalystUser code (UMC)PHPAjax

Saving an image in a file in BMP format Hide the details

<Result> = dSaveImageBMP(<Image> , <File name> [, <Number of colors>])
<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 of the Image control or variable
  • Name of the Image, Bar Code or Web Camera control to be used. Image controls in a report cannot be used.
  • WEBDEV - Server codeWINDEV Mobile Name of the Image or Web Camera control to be used.
  • Name of the Image variable to be used.
    WEBDEV - Browser codePHP This type of variable is not available.
<File name>: Character string
Name and full (or relative) path of BMP file to create. 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 BMP file is not checked. This file is automatically overwritten if it already exists.
<Number of colors>: Optional integer
Number of colors for the image saved:
  • 0 (by default): number of colors defined in the screen resolution
  • 16: 16 colors
This parameter corresponds to the number of colors proposed in the color palette when using the BMP file.
Universal Windows 10 App Syntax not available

Saving an image in memory Hide the details

<Result> = dSaveImageBMP(<Image> , <inMemory> [, <Number of colors>])
<Result>: Buffer
Byte string containing the image in BMP 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), ...
WEBDEV - Browser code In browser code, this byte string can only be assigned to another image ("Localize the image in the _WEB directory in browser code" must be unchecked). It cannot be saved in a file to build an image file.
<Image>: Name of the Image control or variable
  • Name of the Image, Bar Code or Web Camera control to be used. Image controls in a report cannot be used.
  • WEBDEV - Server codeWINDEV Mobile Name of the Image or Web Camera control to be used.
  • Name of the Image variable to be used.
    WEBDEV - Browser codePHP This type of variable is not available.
<inMemory>: Constant
inMemory: Constant used to save an image in memory.
<Number of colors>: Optional integer
Number of colors for the image saved:
  • 0 (by default): number of colors defined in the screen resolution.
  • 16: 16 colors.
This parameter corresponds to the number of colors proposed in the color palette when using the BMP file.
Remarks

Image found in a Web Camera control

Only the image displayed when dSaveImageBMP is executed is saved. To save this image, you can also use:
  • the VideoCapture function: the image will be saved as a BMP file
  • the dSaveImageGIF function: the image will be saved in GIF format or in memory
  • the dSaveImageJPEG function: the image will be saved in JPEG format or in memory
  • the dSaveImagePNG function: the image will be saved in PNG format or in memory
WEBDEV - Browser code

Drawing in browser code

The image saved in memory can be directly assigned to an Image control. Depending on the browser used, the result may not be the expected one.
For example, with the current version of FireFox (available when this documentation was published), images in BMP format are not displayed properly.
This may be fixed in future browser updates.
PHP

Pattern and PHP

In PHP, the drawing functions are based on the graphic library GD. This library is commonly used by the PHP hosting providers and therefore it is always enabled. The version of the GD library must be version 2.0.28 (or later). This library can be downloaded from the PHP site.
To enable (if necessary) this library locally, the following elements are required:
  • PHP installed.
  • the PHP.INI file found in the Windows directory must contain the following line: "extension=php_gd2.dll" (instead of ";extension=php_gd2.dll").
  • the php_gd2.dll file must exist in the directory of PHP extensions. This directory is defined in the PHP.INI file by the "extension_dir" variable.
Component: wd290pnt.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 01/16/2024

Send a report | Local help