How to write EXIF GPS data so that it shows when viewing properties #2284
Unanswered
daniaalnadir
asked this question in
Q&A
Replies: 1 comment
-
Found out that i wasn't saving the image but then found out that HEIC isn't supported. Will try to find another way |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
So I am setting GPS data and then to test this works, I get the value and it returns the correct value, however it does not update the properties when viewing on Windows. My code looks like the below
image.Metadata.ExifProfile.SetValue(ExifTag.GPSLatitude, new Rational[] {Rational.FromDouble(dmsLatitude.Degrees), Rational.FromDouble(dmsLatitude.Minutes), Rational.FromDouble(dmsLatitude.Seconds) });
And below is the properties windows just to make it clear which window i'm referencing
Just wondering if anyone has any ideas.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions