4 An CLI tool written in Java for resizing images.
5 Recursively transfers a tree of files and directories and resizes images.
11 If you have fully-fledged operating system like some GNU/Linux distribution,
12 you will probably use better tool for resizing images.
13 In Debian or Ubuntu you can easilly install ImageMagick:
14 apt install imagemagick
16 convert ${input} -resize 1200x1200 -quality 80 ${output};
17 or write some shell script around it.
19 But if you need a multiplatform tool with minimal requirements,
20 the copy-image-resizer might be useful.