Re-exports§
pub use exif_data::ExifInfo;pub use file_detector::get_file_type;pub use file_detector::is_image_file;pub use file_detector::is_raw_file;pub use file_detector::is_supported_file;pub use image_processor::process_image_file;pub use raw_processor::convert_raw_to_jpeg;pub use image_processor::process_image_bytes_to_vec;pub use raw_processor::convert_raw_bytes_to_vec;
Modules§
- exif_
data - file_
detector - Universal Image Processing Library
- image_
processor - raw_
processor
Functions§
- can_
process_ file - Checks if a file can be processed by this library
- convert_
raw_ bytes_ to_ jpeg - Convert RAW bytes to JPEG by processing the bytes in-memory via the native
FFI and writing the resulting JPEG preview to
output_path. - get_
file_ info - Gets detailed information about file type and processing capabilities
- process_
any_ image - Unified function to process any supported image file (RAW or standard format)
- process_
image_ bytes - Process image data provided as bytes. Processes the bytes in-memory via the
native FFI and writes the resulting JPEG preview to
output_path.