rskit-media-image 0.2.0-alpha.3

Native image processing backend using the image crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Native image processing backend.
//!
//! Uses the `image` crate for fast image operations without requiring FFmpeg to be installed.

#![warn(missing_docs)]

mod config;
mod io;
mod probe;
mod processor;
mod registry;

pub use config::Config;
pub use registry::register;