|
|
|
|
|
ImageInfoClose (Function) In french: ImageInfoFerme Closes the image file (in JPEG or TIFF format) used by ImageInfoValue and/or ImageInfoList and frees the image from memory. Remarks: - This function has no effect if the image used by ImageInfoValue and/or by ImageInfoList comes from an Image control, an image memo or a binary string.
- To handle the Exif tags of an image, use the Exif property of Image variables. This property can be used on Android applications.
CheminImg is string = "C:\Mes Images\MonImage.JPG"
Info("Date de réalisation : " + ImageInfoValue(CheminImg, imgDate))
ImageInfoClose(CheminImg)
Syntax
ImageInfoClose(<Image file>)
<Image file>: Character string Name and full (or relative) path of the image file to close (up to 260 characters). A UNC path can be used. Remarks ImageInfoClose returns no error code. To determine if this function generated an error, use the ErrorOccurred variable. If an error occurs, you can get more details on the error with ErrorInfo.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|