3 stable releases
2.1.0 | Oct 30, 2022 |
---|---|
2.0.1 | Oct 30, 2022 |
2.0.0 | Oct 12, 2022 |
#700 in Images
36KB
907 lines
Rustagram
Rustagram is a toy implementation of instgram-ish filters in Rust for fun and profit. Well no profit, but fun nonetheless.
Usage
cargo install rustagram
rustagram input.jpg 1977
Filters
Credits
- CSSgram by una for inspiration 👩🎨
- Alex Jodin from unsplash for the photo which can be found here 📸
lib.rs
:
Rustagram - Apply instagram filters to your photos.
Example
use rustagram::{RustagramFilter, FilterType};
let img = image::open("myimage.png")?;
let modified = img.to_rgba8().apply_filter(FilterType::Valencia);
Dependencies
~5.5MB
~65K SLoC