Declaration
property EXIF_Model: AnsiString;
Description
Returns the model number of the camera
// Display the camera used to create an image
bmp := TIEBitmap.Create();
bmp.ParamsEnabled := True;
bmp.LoadFromFile( 'C:\CameraImage.jpeg' );
if bmp.Params.EXIF_Model <> '' then
lblCamera.Caption := bmp.Params.EXIF_Model
else
lblCamera.Caption := 'Unknown';
... Do something with bmp? ...
bmp.Free();