Expand description
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);
Re-exports§
pub use image;
Structs§
- Invalid
Filter Name - Failed to parse a valid filter from the given name.
Enums§
- Filter
Type - All available image filters.
Traits§
- Rustagram
Filter - Apply a given filter type.