Skip to content

A .Net Standard library for editing Exif metadata

License

Notifications You must be signed in to change notification settings

hgy59/exiflibrary

 
 

Repository files navigation

License Nuget

Travis AppVeyor

ExifLibrary is a .Net Standard library for editing Exif metadata contained in image files.

Installation

If you are using NuGet you can install the assembly with:

PM> Install-Package ExifLibNet

Quick Start

To read an image file and extract metadata:

var file = ImageFile.FromFile("path_to_image");

// the type of the ISO speed rating tag value is unsigned short
// see documentation for tag data types
var isoTag = file.Properties.Get<ExifUShort>(ExifTag.ISOSpeedRatings);

// the flash tag's value is an enum
var flashTag = file.Properties.Get<ExifEnumProperty<Flash>>(ExifTag.Flash);

// GPS latitude is a custom type with three rational values
// representing degrees/minutes/seconds of the latitude 
var latTag = file.Properties.Get<GPSLatitudeLongitude>(ExifTag.GPSLatitude);

To add metadata:

var file = ImageFile.FromFile("path_to_image");
// note the explicit cast to ushort
file.Properties.Set(ExifTag.ISOSpeedRatings, <ushort>200);

To save the image with metadata:

file.Save("path_to_image");

Documentation

Please visit: http:https://oozcitak.github.io/exiflibrary/

About

A .Net Standard library for editing Exif metadata

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 99.7%
  • PowerShell 0.3%