A Open Source command line utility for Bulk resizing images
home |
| Download the latest build
The application is published as a console application
The following code will resize all images in the current directory to a max width of 1024 pixels.
>CA.Images resize -w 1024
The following code will resize all images in the current directory to a max height of 600 pixels.
>CA.Images resize -h 600
The following code will resize all images in the current directory to a box bo 128 x 128 pix
>CA.Images resize -w 128 -h 128
The following code will resize all images in the current directory to a box bo 128 x 128 pix
>CA.Images resize -w 128 -h 128
The following code will resize all images in the specified directory to 1024x1024 and put the resized images into the “E:\TeddysAdventures\result” directory
C>CA.Images resize -t "E:\TeddysAdventures" --types jpg -w 1024 -h 1024 -r "result"
Get Help from the cmd line
>CA.Images resize --help
>CA.Images resize --help
CA.Images 1.0.24
Copyright (C) 2022 Ravin Enterprises Limited
-t, --target (Default: .) This is the target directory that will be scanned to images
--types (Default: jpg,jpeg,gif,bmp,png)
-w, --width (Default: 600)
-h, --height (Default: 600)
-s, --saveAs (Default: .)
-r, --resizedDirectoryName (Default: ResizedImages)
--resizedFileName (Default: {FN}_{SIZE})
--help Display this help screen.
--version Display version information.