image-collage 1.0.0

Create beautiful 2x2 image collages with a blazing-fast Rust CLI and TUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Image collage creation library.
/// 
/// This library provides functionality to create 2x2 image collages
/// with customizable borders and sizing options.

pub mod collage;
pub mod utils;
pub mod tui;

pub use collage::{create_collage, load_and_process_image};
pub use utils::is_image_file;