ImgCopyExifData |
Top Previous Next |
Prototype
strExifAvailable:=ImgCopyExifData(strSourceFile, strDestFile)
Description
Copy EXIF data from source jpeg file to destination jpeg file.
Parameters
strSourceFile: string value corresponding to the name of source jpeg file, where to read EXIF data. strDestFile: string value corresponding to the name of destination jpeg file, where to write EXIF data.
Returned value
Boolean value telling if exif data is available in source file.
Notes
EXIF data includes some data from camera/device used to capture pictures, as aperture time, color profile, etc... Processing and saving a file, the exif data is lost, so if you want to include original data in processed image you have to copy it from original umprocessed file.
Example
// Copy EXIF data from original to processed file ImgCopyExifData(_CurrentInputFile, _CurrentOutputFile); |