Skip to main content

karbon_framework/storage/
mod.rs

1mod upload;
2mod thumbnail;
3mod img_resizer;
4
5pub use upload::{handle_upload, UploadedFile, AllowedMimes, UploadConfig};
6pub use thumbnail::{
7    generate_thumbnail, ImageProcessor, ResizeMode, CropAnchor, CropRegion,
8    Rotation, FlipDirection, OutputFormat, PngCompression, Watermark,
9};
10pub use img_resizer::{ImgResizer, ImgResizerConfig};