ExifLib .NET的Exif读取库

程序名称:ExifLib

授权协议: CPOL

操作系统: Windows

开发语言: C#

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 也可通过 NuGet 获取

ExifLib 官网

http://www.codeproject.com/Articles/36342/ExifLib-A-Fast-Exif-Data-Extractor-for-NET-2-0

相关编程语言

BlazeDS 是一个基于服务器的Java 远程控制(remoting...
OVal 是一个可扩展的Java对象数据验证框架,验证的规...
Volta 是一套开发工具,专为开发分布式、实时系统应...
OpenDDS 是一个开源的 C++ 实现的 对象管理组织 OMG...
JADE (Java Agent DEvelopment Framework) 是一个完...
FastMM ,在D2006和2007中已代替了原来的内存管理器。