Possible Duplicate:
Reading EXIF data from JPG
In my C# 3.0, .NET 3.5 project I am doing some image-related stuff. Particularly, I need to extract EXIF info.
Regular means of EXIF extraction have drawbacks:
- If I use standard Image class, it loads all image, not only EXIF, what causes performance problems on a huge amount of images (I am working with tens of thousands). Besides, it supports only regular image types, not raw files of digital cameras, such as, e.g. NEF, DSC, DNG.
- If I use GdPicture.NET library (which supports raw image formats), it also extremely long to load image (about half-minute for a single NEF file!), so I will need to wait days until EXIF is extracted for all images.
Is there any library to quickly extract EXIF info from regular jpeg images as well as raw images, without loading an image itself?