rsraw 0.1.1

A comprehensive Rust wrapper for the LibRaw library, providing safe and idiomatic access to raw image processing capabilities, works on Linux/Windows/MacOS/iOS/Android.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod err;
mod gps;
mod lens;
mod mounts;
mod processed;
mod raw;
mod thumb;

pub use gps::{GpsInfo, GpsParseError};
pub use lens::{FocusType, LensInfo};
pub use mounts::Mounts;
pub use processed::{ImageFormat, ProcessedImage};
pub use raw::{FullRawInfo, RawImage, BIT_DEPTH_16, BIT_DEPTH_8};
pub use thumb::{ThumbFormat, ThumbnailImage, Thumbnails};