Code: Select all
BPath path(&entref);
GFL_IPTC_DATA *iptc;
iptc = gflLoadIPTC(path.Path());
if (iptc && iptc->NumberOfItems)
//TODO...
Moderators: helmut, XnTriq, xnview
Code: Select all
BPath path(&entref);
GFL_IPTC_DATA *iptc;
iptc = gflLoadIPTC(path.Path());
if (iptc && iptc->NumberOfItems)
//TODO...
Hum, the 2.20 has some problem with IPTCmatjako wrote:Hi, I am writing a photo-album type of an application for BeOS (R5) using GFL SDK v2.20. I have problems getting IPTC tags with LoadIPTC(). For instance, this will always return NumberOfItems ==0the funny thing is GetIPTCData after LoadBitmap works! ??? Any ideas?Code: Select all
BPath path(&entref); GFL_IPTC_DATA *iptc; iptc = gflLoadIPTC(path.Path()); if (iptc && iptc->NumberOfItems) //TODO...
I see... this could be itxnview wrote: Hum, the 2.20 has some problem with IPTC