up vote 3 down vote favorite
2
share [g+] share [fb]

Preferably in VB.Net, but c# is fine, how can I access the extra properties added to a file by my digital camera, like "Date Picture Taken", "Shutter Speed" or "Camera Model"?

Image Properties

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

The following article should be helpful.

link|improve this answer
feedback

When I built something similar I used this article quite a bit. But basically you're looking for the EXIF data embedded in the image.

There are a number of great libraries to extract it for you, if you don't want to write it from scratch.

link|improve this answer
feedback

You probably want to use the BitmapMetadata class in the System.Windows.Media.Imaging namespace.

There is a BitmapMetadata sample that can be downloaded from MSDN.

link|improve this answer
feedback

Links to simliar StackOverflow questions: here, here and here.

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.