Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to write a small program in C# which goes through my jpeg photos and, for example, sorts them into dated folders (using MY dating conventions, dammit...).

Does anyone know a relatively easy way to get at the EXIF data such as Date And Time or Exposure programatically? Thanks!

share|improve this question
Link to similar SO question: What is the best EXIF library for .Net? – Jakub Šturc Oct 1 '08 at 19:20

8 Answers

up vote 14 down vote accepted

Here is a good library for it. You can even get the source code to have a look inside.

share|improve this answer

As suggested, you can use some 3rd party library, or do it manually (which is not that much work), but the simplest and the most flexible is to perhaps use the built-in functionality in .NET. For more see:

I say "it’s the most flexible" because .NET does not try to interpret or coalesce the data in any way. For each EXIF you basically get an array of bytes. This may be good or bad depending on how much control you actually want.

Also, I should point out that the property list does not in fact directly correspond to the EXIF values. EXIF itself is stored in multiple tables with overlapping ID’s, but .NET puts everything in one list and redefines ID’s of some items. But as long as you don’t care about the precise EXIF ID’s, you should be fine with the .NET mapping.

share|improve this answer
3  
Accessing Bitmap.PropertyItems requires reading the whole file into memory. If you create a Bitmap, access PropertyItems and do nothing else, you can use XPerf to see that your app accessed the image file and read it all into memory. For my computer, a 3.4mb file cost >700ms worth of IO, just to get EXIF via PropertyItems :(. – Tristan Aug 6 '11 at 22:53
2  
By comparison, Picasa's PhotoViewer reads just 20 - 30k from each file it touches. Those reads cost only ~25ms. Wow; I'd love to chat with the guy/girl that wrote that stuff. (Data was collected by profiling PhotoViewer's startup using XPerf). – Tristan Aug 9 '11 at 14:32

Here is a link to another similar SO question, which has an answer pointing to this good article on "Reading, writing and photo metadata" in .Net.

share|improve this answer

Image class has PropertyItems and PropertyIdList properties. You can use them.

share|improve this answer
It seems it's read-only, so I cannot add any on the new Image... – TigrouMeow Aug 5 '09 at 2:16
3  
Use the Image.SetPropertyItem(PropertyItem) function on the new image. – Morten Christiansen Nov 18 '09 at 12:50

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.

share|improve this answer

You can use TagLib# which is used by applications such as F-Spot. Besides Exif, it will read a good amount of metadata formats for image, audio and video.

I also like ExifUtils API but it is buggy and is not actively developed.

share|improve this answer

The command line tool ExifTool by Phil Harvey works with dozens of images formats - including plenty of proprietary RAW formats - and can manipulate a variety of metadata formats including EXIF, GPS, IPTC, XMP, JFIF.

Very easy to use, lightweight, impressive application.

share|improve this answer

Getting EXIF data from a JPEG image involves:

  1. Seeking to the JPEG markers which mentions the beginning of the EXIF data,. e.g. normally oxFFE1 is the marker inserted while encoding EXIF data, which is a APPlication segment, where EXIF data goes.
  2. Parse all the data from say 0xFFE1 to 0xFFE2 . This data would be stream of bytes, in the JPEG encoded file.
  3. ASCII equivalent of these bytes would contain various information related to Image Date, Camera Model Name, Exposure etc...
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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