Jump to content
You must now use your email address to sign in [click for more info] ×

eppx

Members
  • Posts

    1
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Well, here I am. I'm using the standard interface to transfer images plus a special interface to obtain EXIF data as that's needed for PTLens. Do you want to take this offline? Being a developer you probably have access to my email address. // examine EXIF info uint8 *exif = NULL; rc = getProperty(0x3842494D, propEXIFData, 0, &simpProp, &compProp); if (rc == 0) { size = getSize(compProp); if (size) { exif = (uint8 *)lock(compProp, false); if (exif) { processExif(exif, size); unlock(compProp); } } dispose(compProp); if (!exif && gbl->dlg.pspHost) getPSPexif(); } // also try XMP for lens info getProperty = gFr->propertyProcs->getPropertyProc; rc = getProperty(0x3842494D, propXMP, 0, &simpProp, &compProp); if (rc == 0) { size = getSize(compProp); if (size) { char *xmp = (char *)lock(compProp, false); if (xmp) { processXmp(xmp, size); unlock(compProp); } } dispose(compProp); }
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.