Media Info
A content app for Umbraco to display the Exif Info from your media items such as the GPS and Camera details
![]() |
![]() |
OnSave Notification Handler
It is also possible to use the package to automaticaly update custom properties on the Media item. If you add 2 text properties to the Image MediaType
- exifLocation
- exifCreatedDate
These will get populated when an image containing this information is uploaded.
To enable this functionality, you need to add the following to your program.cs file.
.AddNotificationHandler<MediaSavingNotification, AddExifTagsFromImageHandler>()
When you now upload a new image file, if they contain GPS data and/or the original creation date, the properties will be updated.

