goldengel / exiflibrary

Automatically exported from code.google.com/p/exiflibrary
MIT License
0 stars 0 forks source link

Files with 2 APP1 sections #42

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. In the file I attach to this request, there is 2 Sections APP1
2. I analyze the code but I can't see where you are looking in the second APP1 
section

Please provide any additional information below.
In the ReadExifAPP1 function you try to find the 1rst APP1 section by this line 
exifApp1 = Sections.Find(a => (a.Marker == JPEGMarker.APP1) &&
                a.Header.Length >= 6 &&
                (Encoding.ASCII.GetString(a.Header, 0, 6) == "Exif\0\0"));

I can't see if you try to retrieve the second section later.

Original issue reported on code.google.com by Services...@gmail.com on 26 Feb 2013 at 11:08

Attachments:

GoogleCodeExporter commented 8 years ago
The second APP1 in this image is the Adobe XMP metadata package. This library 
does not currently read XMP metadata. (Although it is retained on saving) There 
is an open Issue (#3) to read XMP metadata.

Thanks,
Ozgur

Original comment by oozcitak on 26 Feb 2013 at 11:22

GoogleCodeExporter commented 8 years ago

Original comment by oozcitak on 26 Feb 2013 at 11:23

GoogleCodeExporter commented 8 years ago
Merged into Issue 3

Original comment by oozcitak on 26 Feb 2013 at 11:24