readme
authorFrantišek Kučera <franta-hg@frantovo.cz>
Sun, 16 Nov 2014 19:41:24 +0100
changeset 0454b46a3c68a
child 1 ec436b66ed64
readme
documentation/readme.txt
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/documentation/readme.txt	Sun Nov 16 19:41:24 2014 +0100
     1.3 @@ -0,0 +1,26 @@
     1.4 +copy-image-resizer
     1.5 +------------------
     1.6 +
     1.7 +An CLI tool written in Java for resizing images.
     1.8 +Recursively transfers a tree of files and directories and resizes images. 
     1.9 +
    1.10 +
    1.11 +Why?
    1.12 +----
    1.13 +
    1.14 +If you have fully-fledged operating system like some GNU/Linux distribution,
    1.15 +you will probably use better tool for resizing images.
    1.16 +In Debian or Ubuntu you can easilly install ImageMagick:
    1.17 +	apt install imagemagick
    1.18 +and resize images:
    1.19 +	convert ${input} -resize 1200x1200 -quality 80 ${output};
    1.20 +or write some shell script around it.
    1.21 +
    1.22 +But if you need a multiplatform tool with minimal requirements,
    1.23 +the copy-image-resizer might be useful.
    1.24 +
    1.25 +
    1.26 +How?
    1.27 +----
    1.28 +
    1.29 +