1 unstable release
new 0.1.0 | Nov 17, 2024 |
---|
#509 in Images
72 downloads per month
Used in libblur
56KB
923 lines
Fast image transpose
Fast and simple image rotating in Rust with flipping and flopping in-place.
Adding to project
cargo add fast_transpose
Transpose RGB image
transpose_rgb(
&img,
&mut transposed,
dimensions.0 as usize,
dimensions.1 as usize,
FlipMode::NoFlip,
FlopMode::NoFlop,
)
.unwrap();
Features
Turning off unsafe
feature will activate forbid unsafe
mode.
This project is licensed under either of
at your option.
Dependencies
~140KB