views:

230

answers:

2

Hi,

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.

+3  A: 

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

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

camilin87
+1 : that solves the first half of my problem : reading EXIF.But I'd like to be able to add/edit tags too!
Olivier PAYEN
+5  A: 

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).

Otaku