hh 0.1.2

highlight the exif photo info
1
2
3
4
5
6
7
use hh::read_exif;

fn main() {
    // 使用实际的图片文件路径测试
    let exif_info = read_exif("example.jpg").expect("Failed to read EXIF");
    println!("EXIF Info: {:#?}", exif_info);
}