Page 1 of 1

Makernotes in EXIF

Posted: Mon Aug 11, 2008 8:06 pm
by madiazg
The XnView program, shows the EXIF data belonging to the group Makernote. However, with the function gflLoadExif not appear this values (ISO, etc).
How can I see this values EXIF?

Code: Select all

      Exif := gflLoadExif(Pchar(FileName1),0);
      NItems := Exif.NumberOfItems;
      for i := 0 to NItems-1 do
      begin
        FormPrincipal.ListBox1.Items.Add(Exif.ItemsList[i].Name + ': ' + Exif.ItemsList[i].Value);
      end;

Thanks
Miguel Angel

Re: Makernotes in EXIF

Posted: Tue Aug 12, 2008 6:47 am
by xnview
Use GFL_EXIF_WANT_MAKERNOTES instead of 0

Posted: Tue Aug 12, 2008 7:12 am
by madiazg
In the library libgfl.pas (Delphi) does not appear GFL_EXIF_WANT_MAKERNOTES and the HELP of library is out of date.
¿Can you indicate one example to get Makernotes?
Thanks
Miguel Angel
http://imagen3d.site88.net

Posted: Tue Aug 12, 2008 7:13 am
by xnview

Code: Select all

gflLoadExif(Pchar(FileName1),1); 

Posted: Tue Aug 12, 2008 7:16 am
by madiazg
Thank you very much
Miguel Angel
http://imagen3d.site88.net