A CLI for image resizing.
npm install image-modulatorA CLI for image resizing.
``npm i -g image-modulator`
image-modulator [dimensions] [source dir] [out dir] Options:
-V, --version output the version number
-w, --width The new width, in pixels
-h, --height The new height of the images, in pixels
-s, --source The directory that contains the images you want to resize.
-o, --out The directory to send the resized images to
-h, --help output usage information
`Example
To resize all images from directory
./my-imgs/ to ./my-resized-imgs to 800x543 pixels, do`image-modulator -w 800 -h 543 -s ./my-imgs -o ./my-resized-imgs/``