Click here to Skip to main content
15,880,543 members
Articles / Mobile Apps / Windows Phone 7

ExifLib - A Fast Exif Data Extractor for .NET 2.0+

Rate me:
Please Sign up or sign in to vote.
4.90/5 (97 votes)
17 Aug 2015CPOL5 min read 1.3M   21.1K   325   366
Reads JPEG Exif data without the heavyweight and unnecessary instantiation of GDI+ objects.

Exif Lib - test application

Introduction

ExifLib simply reads Exif tags (i.e., camhera model, GPS data, date picture taken, shutter speed etc.) from JPEG files, without the overhead introduced by using the GDI+ classes located in System.Drawing.Imaging, and with less lines of code for the developer.

Background

I've been using a simple command line application to move my photos into subdirectories based on the date on which they were created. As with all other .NET Exif implementations I've seen, I was using the PropertyItem class located in System.Drawing.Imaging. While this does the job, I often found myself processing thousands of images at a time, and the .NET classes were just too slow for the job. ExifLib goes back to the JPEG/TIFF standard itself, and only reads the essentials, using little more than the file input classes in System.IO.

Using the Code

ExifLib is very simple, with only one class and one enum in the namespace. Just add a reference to ExifLib.dll, and you're good to go! An example follows:

C#
using ExifLib;
...
...
...
// Instantiate the reader
using (ExifReader reader = new ExifReader(@"C:\temp\testImage.jpg"))
{
    // Extract the tag data using the ExifTags enumeration
    DateTime datePictureTaken;
    if (reader.GetTagValue<DateTime>(ExifTags.DateTimeDigitized, 
                                    out datePictureTaken))
    {
        // Do whatever is required with the extracted information
        MessageBox.Show(this, string.Format("The picture was taken on {0}", 
           datePictureTaken), "Image information", MessageBoxButtons.OK);
    }
}

Note that the ExifReader class holds the image file open, so once you're finished with the reader, be sure to call its Dispose method, either explicitly, or implicitly through a using statement (as in the above example).

How it works

Exif data is stored in the JPEG header, inside the APP1 block. This block contains a number of IFDs (image file directories). These include the EXIF IFD and the GPS IFD, which contain the tags available for retrieval by this library.

The IFDs start with a catalogue of EXIF tags and the stream offsets to where the data for each tag is stored. On instantiation, the library creates a Dictionary of these tag offsets, which are accessed during retrieval of a specific tag's value. It's this lazy retrieval which gives the library its speed, as most EXIF use-cases only involve retrieving a handful of tag values, so there's little use in retrieving tag values before they're required.

Points of Interest

Something strange that I learned while writing this library is that while JPEG stipulates "Big Endian" encoding (i.e., numbers read from left to right), the TIFF standard allows Big or Little Endian encoding. Since the Exif tags are encoded using TIFF encoding, often the JPEG will be read using "Big Endian" encoding until the TIFF section is reached, at which point the encoding reverses and the rest of the document is read using "Little Endian" encoding.

During coding, I realised from a comment on the ExifWorks CodeProject article that it's possible to increase performance when using System.Drawing.Image by setting the constructor's validateImageData parameter to false. However, even when using this enhancement, ExifLib still performs 50% faster, possibly because it does not read the tag values until they're requested. I have also noticed that ExifLib performs similarly with small (<1MP) images, but scales better when loading larger images. The screenshot at the top of this page was produced using a 12MP image.

History

Version 1.1

  • Array extraction has been added, thanks to a comment from Justin Carasick. This is used in various fields, including GPS coordinates and Exif versioning. The previous version of ExifLib would only return the first element from an array.

Version 1.2

  • Fixed bug when retrieving data for fields shorter than 4 bytes, thanks to a comment from bartsy. The previous version of ExifLib would lose important data from these fields when processing big-endian encoded files.
  • Updated the project to Visual Studio 2010, refactored a little of the code. The project is still .NET 2.0+.

Version 1.3

  • Added the ability to extract JPEG encoded thumbnails from images, thanks to a comment from StyrianOak. Note that uncompressed (i.e. TIFF) encoded thumbnails are not supported, but since any camera which supports the DCF standard will produce JPEG thumbnails, this is a minor limitation.

Version 1.4

  • Added a constructor overload to allow reading of JPEG data from any seekable stream
  • Modified code to allow compiling for Windows Phone and Silverlight. The NuGet package now includes Windows Phone and Silverlight DLLs.
  • Improved support for null DateTime values thanks to comments from schurig and BrandonOrding
  • undefined Exif fields are now returned as byte[] instead of uint[]
  • Fixed a bug in the thumbnail extractor where thumbnails with 0xFF padding were not being recognised, thanks to a comment from _d-fens_.
  • Added the option to retrieve a TIFF rational as an int[] {numerator, denominator} array (instead of double), thanks to a comment from Member 10226163.
  • Changed thumbnail padding detection code to accept 0x00 as well as 0xFF as padding bytes, thanks to a comment from Cruiser77
  • Added conditional compilation options for Windows Store app compatibility, thanks to a comment from _dieQueeQ.

Version 1.5

  • Fixed an exception when reading images containing tags without datatypes
  • Refactored to store tag data in separate dictionaries for each IFD
  • Added the ability to extract metadata from images which don't contain the EXIF sub IFD, thanks to an issue raised in workspaces by Charlie Hess

Version 1.6

  •  
  • Added a new constructor parameter for framework 4.5+ to allow the user to indicate that the supplied stream should be left open when the reader is disposed
  • Thanks to a comment from disore, fixed ArgumentExceptions thrown when the end of the stream is reached during instantiation; wrapped some instantiation exceptions in ExifLibExceptions.

Version 1.7

  • Updated tag support to EXIF 2.3
  • Updated IFD selection to handle out-of-sequence tag designations (to support non-standard Microsoft XP tags)
  • Added support for unicode-encoded strings, thanks to comments from lightfinder and Forcasual things.

NuGet Release

ExifLib is now available on nuget! Simply install from the Visual Studio Package Manager Console using Install-Package ExifLib.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer BreastScreen Victoria
Australia Australia

Simon McKenzie has been working as a developer for 10 years, primarily in .NET, with interests in imaging and GIS, particularly on mobile platforms. He is the author of the award winning MapSnap GPS, a moving map application for Windows Phone. He's also the author of the popular (free) high-speed ExifLib EXIF extractor for .NET.


Comments and Discussions

 
GeneralRe: Exception Running on Windows Phone 8 Pin
Member 87511835-Nov-13 1:04
Member 87511835-Nov-13 1:04 
GeneralRe: Exception Running on Windows Phone 8 Pin
Simon McKenzie5-Nov-13 11:20
Simon McKenzie5-Nov-13 11:20 
GeneralRe: Exception Running on Windows Phone 8 Pin
Member 87511835-Nov-13 22:15
Member 87511835-Nov-13 22:15 
QuestionTrouble to compile the project Pin
Julien Blervaque29-May-13 9:36
Julien Blervaque29-May-13 9:36 
AnswerRe: Trouble to compile the project Pin
Simon McKenzie29-May-13 12:32
Simon McKenzie29-May-13 12:32 
GeneralRe: Trouble to compile the project Pin
Julien Blervaque10-Jun-13 20:12
Julien Blervaque10-Jun-13 20:12 
QuestionModify EXIF data Pin
Member 100309438-May-13 2:22
Member 100309438-May-13 2:22 
AnswerRe: Modify EXIF data Pin
Simon McKenzie8-May-13 13:44
Simon McKenzie8-May-13 13:44 
GeneralRe: Modify EXIF data Pin
Member 100309438-May-13 21:32
Member 100309438-May-13 21:32 
GeneralRe: Modify EXIF data Pin
Simon McKenzie9-May-13 13:44
Simon McKenzie9-May-13 13:44 
GeneralRe: Modify EXIF data Pin
Member 1003094313-May-13 4:55
Member 1003094313-May-13 4:55 
GeneralRe: Modify EXIF data Pin
Simon McKenzie13-May-13 15:25
Simon McKenzie13-May-13 15:25 
GeneralRe: Modify EXIF data Pin
Member 1003094313-May-13 21:17
Member 1003094313-May-13 21:17 
GeneralRe: Modify EXIF data Pin
Simon McKenzie21-Jul-14 19:02
Simon McKenzie21-Jul-14 19:02 
GeneralRe: Modify EXIF data Pin
Member 1003094321-Jul-14 20:37
Member 1003094321-Jul-14 20:37 
AnswerRe: Modify EXIF data Pin
Yves Goergen9-Jan-16 4:30
Yves Goergen9-Jan-16 4:30 
QuestionGet Orientation Pin
Member 100309435-May-13 22:17
Member 100309435-May-13 22:17 
AnswerRe: Get Orientation Pin
Simon McKenzie6-May-13 1:06
Simon McKenzie6-May-13 1:06 
GeneralRe: Get Orientation Pin
Member 100309436-May-13 1:17
Member 100309436-May-13 1:17 
GeneralRe: Get Orientation Pin
Simon McKenzie6-May-13 1:37
Simon McKenzie6-May-13 1:37 
GeneralRe: Get Orientation Pin
Member 100309436-May-13 3:09
Member 100309436-May-13 3:09 
GeneralMy vote of 5 Pin
damianom13-Apr-13 0:42
damianom13-Apr-13 0:42 
QuestionNeed a way to tell if ANY EXIF data is present Pin
MikeStammer12-Apr-13 9:43
MikeStammer12-Apr-13 9:43 
AnswerRe: Need a way to tell if ANY EXIF data is present Pin
Simon McKenzie12-Apr-13 17:56
Simon McKenzie12-Apr-13 17:56 
QuestionExcellent Stuff - Use this in SharePoint Pin
Martian Keeper11-Apr-13 23:12
Martian Keeper11-Apr-13 23:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.