Add ImageLoader and file discovery modules

ImageLoader: load image info (dimensions, format, file size) and pixels.
Discovery: find image files by extension, flat or recursive, single file or directory.
All 9 tests passing.
This commit is contained in:
2026-03-06 01:50:46 +02:00
parent 5c93dbf829
commit c445f71163
5 changed files with 253 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
pub mod config;
pub mod discovery;
pub mod error;
pub mod loader;
pub mod operations;
pub mod pipeline;
pub mod preset;