5

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?

Thomas Orlita
  • 1,448
  • 14
  • 27
Shane Miskin
  • 1,903
  • 2
  • 22
  • 30

4 Answers4

5

I maintain a library that offers comprehensive support for extracting image metadata from a variety of file formats.

https://github.com/drewnoakes/metadata-extractor-dotnet

Drew Noakes
  • 284,599
  • 158
  • 653
  • 723
3

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.

Xenph Yan
  • 80,783
  • 15
  • 46
  • 55
2

The following article should be helpful.

labilbe
  • 3,364
  • 2
  • 27
  • 34
1

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.

Eric Schoonover
  • 45,692
  • 46
  • 149
  • 200