Hello,
I'm trying to open 2 images (different extensions) one .jpg and one .png
When
TImageEnIO* imageTmp;
try
{
imageTmp = new TImageEnIO((Classes::TComponent *)NULL);
}
catch (...)
{
return (false);
}
imageTmp->ParamsFromFile(path);
UnicodeString info = imageTmp->Params->XMP_Info;
When it's the .jpg everything is ok i get all information I need but, when i try with my .png nothing, info == "".
So i went to http://regex.info/exif.cgi
to see if both of my pictures contains what I search and it was.
Someone now if imageEn is able to open and read XMP information from PNG images?