ImgSaveAsBmp

Top  Previous  Next

Prototype

 

boolSaved:=ImgSaveAsBmp(intImageHandle, FileName)

 

Description

 

Saves an image in BMP format.

 

Parameters

 

intImageHandle: integer value corresponding to the image handle.

 

FileName: A string containing a valid path and filename.

 

Returned value

 

boolSaved: boolean value that specifies if saving operation was correctly executed.

 

Notes

 

None.

 

Example

 

// Build the file name to use

NewFileName:='c:\images\BMPs\'+ExtractFileName(_CurrentInputFile);

// Save current image in bmp format

ImgSaveAsBmp(_CurrentImage,NewFileName);