ImageEn, unit iexMetaHelpers

TListViewHelper.ReadListFromExif

TListViewHelper.ReadListFromExif


Declaration

function ReadListFromExif(IOParams : TIOParams) : Boolean; overload;
function ReadListFromExif(const sFilename : string) : Boolean; overload;


Description

Fill a TListView with the EXIF properties of the current image, or one loaded from file.
Result is true if the file has any EXIF fields.

Note: You may wish to call InitializeList before ReadListFromExif to automatically assign the optimal layout to the TListView


Examples

// Display the EXIF properties of the current image
MyExifListView.ReadListFromExif( ImageEnView1.IO.Params );

// Read-only display of EXIF properties of a file
MyExifListView.ReadListFromExif( 'C:\MyImage.jpeg', True );