I've never heard of anyone doing this but here's how I would go about it.
Get hold of a metadata extractor that can read your image stream. This should do it.
Create a custom media type based on the default image type that has extra properties to hold the data you need.
Create an eventhandler for MediaService.Saved that extracts the metadata creates a new instance of your custom type, and extracts the EXIF data to that type saving it whenever an image is saved.
Create an eventhander for GatheringNodeData that you can use to add the data from your properties to the examine index
There's a fair whack of code to write but it should all be possible.
Examine search of Exif data in images
Anyone have Examine searching Exif data? If so, how did you manage to get it implemented?
Hi John,
I've never heard of anyone doing this but here's how I would go about it.
Get hold of a metadata extractor that can read your image stream. This should do it.
Create a custom media type based on the default image type that has extra properties to hold the data you need.
Create an eventhandler for
MediaService.Saved
that extracts the metadata creates a new instance of your custom type, and extracts the EXIF data to that type saving it whenever an image is saved.Create an eventhander for
GatheringNodeData
that you can use to add the data from your properties to the examine indexThere's a fair whack of code to write but it should all be possible.
is working on a reply...