You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GPSVersionID would not correctly survive a "roundtrip" JPG -> ExifLibrary.JPGFile -> JPG due to the incorrect indexing of mValue at the following line:
GPSVersionID would not correctly survive a "roundtrip" JPG -> ExifLibrary.JPGFile -> JPG due to the incorrect indexing of
mValue
at the following line:exiflibrary/ExifLibrary/ExifExtendedProperty.cs
Line 216 in 1e0f838
E.g. GPSVersionID 2.3.0.0 would end up being 2.2.2.2.
The line should rather be as follows (notice the
i
instead of0
in themValue[i]
) :data[i] = byte.Parse(mValue[i].ToString());
The text was updated successfully, but these errors were encountered: