Hi
I'm trying read specific EXIF tags so i try:
var
Value: PChar;
libGfl.gflBitmapGetEXIFValue(@GFL_BMP, $112, Value, 255);
...
Memo1.Lines.Add('Tag $112: ', + Value);
But Value is always empty ...
Where's my error ? Thanks for help
Read Specific EXIF tag
Moderators: XnTriq, helmut, xnview
-
- Posts: 8
- Joined: Mon Mar 22, 2010 11:23 am
Re: Read Specific EXIF tag
i have find my error:
replace: libGfl.gflBitmapGetEXIFValue(@GFL_BMP, $112, Value, 255);
by
libGfl.gflBitmapGetEXIFValue(GFL_BMP, $112, Value, 255);
replace: libGfl.gflBitmapGetEXIFValue(@GFL_BMP, $112, Value, 255);
by
libGfl.gflBitmapGetEXIFValue(GFL_BMP, $112, Value, 255);