Replies: 1 comment
-
There’s a very strong chance windows is caching that data. I’d check with a third party exif tool. |
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
Uh oh!
There was an error while loading. Please reload this page.
-
I am working in .NET 6 using Visual Studio 2022, with version 3.0.1 of the ImageSharp package.
I am building a tool to update the metadata on images that I am capturing and editing. I have multiple related files that share most of the same metadata, so I am trying to avoid having to edit this information file by file.
I can edit the metadata in the JPEG ExifProfile and TIFF ExifProfile just fine and save this information to the file system. However, not all of the updated metadata tags are being reflected in Windows 10 File Explorer after the save.
I can also manually edit the title field in Windows 10, and the same changed metadata tags show up when I read the image into the editor again, so it looks like Windows and ImageSharp are using the same tags.
Am I missing something in the code to get the changed Exif tags to be picked up by Windows 10?
The following screenshots show the sequence of changes.
JPEG Image Data Prior to Editing using ImageSharp





JPEG ExifProfile Prior to Editing using ImageSharp
JPEG ExifProfile After Editing using ImageSharp
JPEG Image Data After Saving to Disk using ImageSharp
Note that Title change is not reflected in File Explorer
JPEG ExifProfile in ImageSharp after Editing Title using File Explorer
Note how Windows and ImageSharp seem to be using the same Exif tags.
Beta Was this translation helpful? Give feedback.
All reactions