ExifLib 介绍
ExifLib 简化了 .NET 应用读取图片 EXIF 标签数据的过程。
示例代码:
using ExifLib; ... ... ... // Instantiate the reader 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 @R_548_4045@ion MessageBox.Show(this, string.Format("The picture was taken on {0}", datePictureTaken), "Image @R_548_4045@ion", MessageBoxButtons.OK); }
ExifLib 官网
http://www.codeproject.com/Articles/36342/ExifLib-A-Fast-Exif-Data-Extractor-for-NET-2-0