Declaration
property EXIF_Software: AnsiString;
Description
Returns the version number of the camera firmware (the internal software of the hardware)
// Display the software used to edit an image
bmp := TIEBitmap.Create();
bmp.ParamsEnabled := True;
bmp.LoadFromFile( 'C:\CameraImage.jpeg' );
if bmp.Params.EXIF_Software <> '' then
lblSoftware.Caption := bmp.Params.EXIF_Software
else
lblSoftware.Caption := 'Unknown';
... Do something with bmp? ...
bmp.Free();