comparison control @ 1:69dc44a72af3

updated
author meillo@marmaro.de
date Sun, 15 Jun 2008 16:36:56 +0200
parents 5fa0beba15d8
children d13cced55e31
comparison
equal deleted inserted replaced
0:5fa0beba15d8 1:69dc44a72af3
6 Build-Depends: debhelper (>= 5), libgd2-noxpm-dev | libgd2-xpm-dev 6 Build-Depends: debhelper (>= 5), libgd2-noxpm-dev | libgd2-xpm-dev
7 Standards-Version: 3.8.0 7 Standards-Version: 3.8.0
8 8
9 Package: resize-gd 9 Package: resize-gd
10 Architecture: i386 10 Architecture: i386
11 Depends: ${shlibs:Depends} 11 Depends: libgd2-noxpm-dev (>= 2.0.33) | libgd2-xpm-dev (>= 2.0.33)
12 Description: resizes images using the gd-library 12 Description: resizes images using the gd-library
13 The program has two modes: 13 The program has two modes:
14 * aspect ratio of the images is preserved and only shrinking is done. Smaller 14 * aspect ratio of the images is preserved and only shrinking is done. Smaller
15 images remain unmodified. 15 images remain unmodified.
16 * the images are resized to match a specific size. The images probably get 16 * the images are resized to match a specific size. The images probably get
17 stretched and enlarged. 17 stretched and enlarged.
18 . 18 .
19 All resizing is done in-place. 19 All resizing is done in-place.
20 . 20 .
21 Only JPEG and PNG files are supported. The filetype is detected by the 21 Only JPEG and PNG files are supported. The filetype is detected by the
22 filename suffix which has to be either ‘.jpg’ or ‘.png’ (in lowercase 22 filename suffix which has to be `.jpg', `.jpeg' or `.png'. Unsupported files
23 letters). Unsupported files get skipped. 23 get skipped.
24 . 24 .
25 This program is meant to be a small(er) alternative to the mogrify -resize 25 This program is meant to be a small(er) alternative to the `mogrify -resize'
26 command of ImageMagick. Mainly because ImageMagick has lots of dependencies, 26 command of ImageMagick. Mainly because ImageMagick has lots of dependencies,
27 while the GD-Library has less. 27 while the GD-Library has less.