# HG changeset patch # User František Kučera # Date 1416163284 -3600 # Node ID 454b46a3c68a894a2d3e599cf9fa32b740323aad readme diff -r 000000000000 -r 454b46a3c68a documentation/readme.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/documentation/readme.txt Sun Nov 16 19:41:24 2014 +0100 @@ -0,0 +1,26 @@ +copy-image-resizer +------------------ + +An CLI tool written in Java for resizing images. +Recursively transfers a tree of files and directories and resizes images. + + +Why? +---- + +If you have fully-fledged operating system like some GNU/Linux distribution, +you will probably use better tool for resizing images. +In Debian or Ubuntu you can easilly install ImageMagick: + apt install imagemagick +and resize images: + convert ${input} -resize 1200x1200 -quality 80 ${output}; +or write some shell script around it. + +But if you need a multiplatform tool with minimal requirements, +the copy-image-resizer might be useful. + + +How? +---- + +