fraxedas / photo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Photo Exif

Available on nuget: https://www.nuget.org/packages/photo.exif

    Install-Package photo.exif

Description

Extract Exchangeable image file format (Exif) from images

File path sample

    var data = _parser.Parse(_path);
    data.ToList().ForEach(Console.WriteLine);

Stream sample

    var data = _parser.Parse(new FileStream(_path,FileMode.Open));
    data.ToList().ForEach(Console.WriteLine);

Result

Both samples will generate the same result:

    256 - ImageWidth = 3264  
    257 - ImageHeight = 2448  
    271 - EquipMake = SAMSUNG  

About

License:MIT License


Languages

Language:C# 95.4%Language:Shell 4.6%