Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

aftershootco/libexif-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LIBEXIF

    let mut data = Data::open("somefile.jpg").unwrap();
    data.set_entry(
        IFD::Image,
        ExifTag::EXIF_TAG_ORIENTATION,
        Value::U16(vec![100u16]),
        ByteOrder::LittleEndian,
    )
    .unwrap();
    let o = data
        .get_entry(IFD::Image, ExifTag::EXIF_TAG_ORIENTATION)
        .unwrap()
        .value(ByteOrder::LittleEndian)
        .unwrap_u16();

You need a working C compiler to build this ( clang/gcc ) along with make.

About

libexif bindings to rust

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages