lensight 1.0.1

A command-line tool for embedding camera metadata and shooting details into photos.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Lensight - A tool for adding camera information to photos
//!
//! This library provides functionality to process JPEG images by adding an information bar
//! containing camera details and EXIF information.

pub mod cli;
pub mod exif;
pub mod image_processor;
pub mod logo;
pub mod resource;
pub mod util;

pub use util::{process_directory, process_single_file};