fraiseql-storage 2.3.2

Object storage backends and HTTP handlers for FraiseQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Image transformation and caching module.
//!
//! Provides on-the-fly image resizing, format conversion, and caching capabilities
//! when the `transforms` feature is enabled.

#[cfg(feature = "transforms")]
pub mod cache;
#[cfg(feature = "transforms")]
pub mod transformer;

#[cfg(test)]
mod tests;

/// Re-export for convenience when transforms feature is enabled
#[cfg(feature = "transforms")]
pub use cache::TransformCache;
#[cfg(feature = "transforms")]
pub use transformer::{ImageTransformer, OutputFormat, TransformOutput, TransformParams};