Reading and Writing EXIF ​​Data with Silverlight

I would like to find a way to read and write exif image data using Silverlight.

I could not find any sample code or library to do this, so I don’t know if this is possible?

thanks

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

+4
source share
2 answers

Here's how you would read in SL: Understanding and reading Exif data . Since the author uses FileInfo for this, the concept of reading can probably be canceled for writing (TIFF - Little Endian).

+5
source

At work, we use this in a WPF application so that it can help.

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

+3
source

All Articles