up vote 13 down vote favorite
11
share [g+] share [fb]

I am looking for simple straightforward solution for accessing EXIF information of jpeg images in .Net. Does anybody has experience with this?

link|improve this question

feedback

7 Answers

I like Atalasoft's DotImage Photo, but its a closed source solution and costs about 600 per dev license.

You can also check out DTools at Codeplex, which is an open source framework designed to supplement the standard Fx. It includes some Exif related classes.

link|improve this answer
feedback

the one I have saved in feeddemon for me to check out more when I have time (when is that for a programmer? LOL) is below

ExifTagCollection - EXIF Metadata extraction library

Mike

link|improve this answer
feedback

Check out this metadata extractor. It is written in Java but has also been ported to C#. I have used the Java version to write a small utility to rename my jpeg files based on the date and model tags. Very easy to use.

link|improve this answer
feedback

Link to similar SO question: How to get the EXIF data from a file using C#

link|improve this answer
1  
You just put me in a recursive loop! ;) – glenneroo Nov 23 '10 at 22:22
feedback

If you're compiling against v3 of the Framework (or later), then you can load the images using the BitmapSource class, which exposes the EXIF metadata through the Metadata property

link|improve this answer
feedback

A new and very fast library is ExifLib - A Fast Exif Data Extractor for .NET 2.0 by Simon McKenzie. I ended up using this one and the code is easy to use and understand. I used it for an app to rename according to the date taken. I wonder how many times such an app has been written.

My tip: Make sure to call Dispose on the ExifReader objects once you've finished with them or the files remain open.

link|improve this answer
feedback

Several years ago, I started a little JPEG EXIF app with Omar Shahine to work on JPEG EXIF files, called JpegHammer.

He extracted from that project a library and called it PhotoLibrary, it was an easy .NET wrapper for the EXIF 2.2 tags. Unfortunately, the GotDotNet site is gone, CodePlex doesn't have it, Omar's web site links don't work, and I don't have a copy anymore.

But, if you can dig around Google, maybe you'll find it and it'll do the trick for you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.