|
|
|
|
|
- Image found in a Web Camera control
- Drawing in browser code
- Drawing in PHP
<Image>.SaveBMP (Function) In french: <Image>.SauveBMP Saves an image: 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.
ResSauvegarde = IMG_ImageDessin.SauveBMP(inMemory)
Syntax
Saving an image in memory Hide the details
<Result> = <Image control>.SaveBMP(<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), ... <Image control>: Control name Name of the Image control to be used. <inMemory>: Constant inMemory: Constant used to save an image in memory. <Number of colors>: Optional integer Number of colors for the image saved:- 0 (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 <Image>.SaveBMP 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>.SaveGIF function: the image will be saved either in Gif format or in memory.
- the <Image>.SaveJPEG function: the image will be saved either in Jpeg 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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|