documentation/readme.txt
author František Kučera <franta-hg@frantovo.cz>
Mon, 17 Nov 2014 23:18:41 +0100
changeset 19 cda209705642
parent 0 454b46a3c68a
child 20 4e4ad30c17d4
permissions -rw-r--r--
use smaller dimension
     1 copy-image-resizer
     2 ------------------
     3 
     4 An CLI tool written in Java for resizing images.
     5 Recursively transfers a tree of files and directories and resizes images. 
     6 
     7 
     8 Why?
     9 ----
    10 
    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
    15 and resize images:
    16 	convert ${input} -resize 1200x1200 -quality 80 ${output};
    17 or write some shell script around it.
    18 
    19 But if you need a multiplatform tool with minimal requirements,
    20 the copy-image-resizer might be useful.
    21 
    22 
    23 How?
    24 ----
    25 
    26