// 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();