image-batch-resizer-rs
Experimental image batch resizer executable in Rust.
Performs simple proportional resizing of image files in a given directory path.
bash
cargo install image-batch-resizer
This installs ibr
into your Cargo binary directory.
For more argument details, type:
bash
ibr -h
bash
ibr input/ -m 512 -d -vvv
This resizes all image files in input/
directory:
-m 512
-d
-vvv
bash
ibr input/ -m 512 -g "*.png" -o resized/
This resizes all image files in input/
directory with verbosity set to 0:
-m 512
-g "*.png"
.png
,-o resized/
input/resized/
directory.