My 1st post on stackoverflow, I have used the class EXIF-AS3 (Adobe Flash CS5 and AS3) many times before and it always work, I am referring to this class:
http://active.tutsplus.com/tutorials/actionscript/quick-tip-use-as3-to-grab-exif-data-from-a-jpg-image/ http://code.google.com/p/exif-as3/
I loop through the EXIF data to find the serial number of the camera however on the new canon I can't seem to find this serial number anywhere. Seems the serial number is stored in the MarkerNotes but I don't think the class is reading it:
if (exifLoader.exif.ifds.primary)
{
displayIFD(exifLoader.exif.ifds.primary);
}
if (exifLoader.exif.ifds.exif)
{
displayIFD(exifLoader.exif.ifds.exif);
}
if (exifLoader.exif.ifds.gps)
{
displayIFD(exifLoader.exif.ifds.gps);
}
if (exifLoader.exif.ifds.interoperability)
{
displayIFD(exifLoader.exif.ifds.interoperability);
}
if (exifLoader.exif.ifds.thumbnail)
{
displayIFD(exifLoader.exif.ifds.thumbnail);
}
Any advise or way I going forward here?