Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Read and write EXIF data with Silverlight

I'd like to find a way to read AND write exif data of an image with Silverlight.

I couldn't find any sample code or library doing this, so I don't know if it's even possible?

Thanks

Update : I need to write (edit or add if necessary) exif data and more precisely the "Software" tag.

like image 890
Olivier Payen Avatar asked Feb 27 '23 10:02

Olivier Payen


2 Answers

At work we use this, in a WPF Application so it might help

http://renaud91.free.fr/MetaDataExtractor/

like image 183
Camilo Sanchez Avatar answered Mar 06 '23 22:03

Camilo Sanchez


This is how you would read in SL: Understanding and Reading Exif Data. As the author is using FileInfo for this, the concept of reading can likely be reversed for writing (TIFF - Little Endian).

like image 37
Todd Main Avatar answered Mar 06 '23 22:03

Todd Main