|
|
|
|
|
- Image found in a Web Camera control
- Drawing in browser code
- Drawing in PHP
<Image>.SaveJPEG (Function) In french: <Image>.SauveJPEG Saves an image: - in a JPEG file.
- in memory.
This image corresponds to the image contained in a Image 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 reports.
- This function can also be used to save the changes made by ImageInfoModify on the Exif tags of an image.
Saving images in JPEG format is supported only if the application is run by the Java Virtual Machine (JVM) distributed by SUN. Images in JPEG format cannot be saved with other Java virtual machines.
ResSauvegarde = IMG_ImageDessin.SauveJPEG(inMemory)
Syntax
Saving an image in memory Hide the details
<Result> = <Image control>.SaveJPEG(<inMemory> [, <Quality> [, <Exif tag>]])
<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 control>: Control name - Name of the Image, Bar Code or Web Camera control to be used. Image controls in a report cannot be used.
Name of the Image or Web Camera control to be used.  Name of the Image control to be used.
<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. <Exif tag>: Optional constant (or combination of constants) Save the Exif tags modified by ImageInfoModify: | | imgAddThumbnail | Adds 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.
| imgProgressiveJPEG | Saves 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). | imgSaveTag | Saves the Exif tags. If there is a thumbnail in the image file displayed in the Image control, a new thumbnail is recalculated. |
By default, the Exif tags are not saved, no operation is performed on the thumbnails.This parameter is available only if <Control name> corresponds to the name of an Image control. Image found in a Web Camera control Only the image displayed when <Image>.SaveJPEG is executed is saved. To save this image, you can also use: - the <Camera>.Capture function: the image will be saved in BMP format
- the <Image>.SaveBMP function: the image will be saved either in BMP format or in memory.
- the <Image>.SaveGIF function: the image will be saved either in Gif format or in memory.
- the <Image>.SavePNG function: the image will be saved either in PNG format or in memory.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|