annotate control @ 4:8d6c9c774531 default tip

merged
author user@debian-sid
date Sun, 15 Jun 2008 17:59:45 +0200 (2008-06-15)
parents d13cced55e31
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
1 Source: resize-gd
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
2 Section: graphics
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
3 Priority: extra
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
4 Maintainer: markus schnalke <meillo@marmaro.de>
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
5 Homepage: http://prog.marmaro.de/resize-gd
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
6 Build-Depends: debhelper (>= 5), libgd2-noxpm-dev | libgd2-xpm-dev
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
7 Standards-Version: 3.8.0
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
8
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
9 Package: resize-gd
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
10 Architecture: i386
2
d13cced55e31 using shlibs now
meillo@marmaro.de
parents: 1
diff changeset
11 Depends: ${shlibs:Depends}
0
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
12 Description: resizes images using the gd-library
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
13 The program has two modes:
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
14 * aspect ratio of the images is preserved and only shrinking is done. Smaller
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
15 images remain unmodified.
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
16 * the images are resized to match a specific size. The images probably get
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
17 stretched and enlarged.
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
18 .
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
19 All resizing is done in-place.
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
20 .
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
21 Only JPEG and PNG files are supported. The filetype is detected by the
1
69dc44a72af3 updated
meillo@marmaro.de
parents: 0
diff changeset
22 filename suffix which has to be `.jpg', `.jpeg' or `.png'. Unsupported files
69dc44a72af3 updated
meillo@marmaro.de
parents: 0
diff changeset
23 get skipped.
0
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
24 .
1
69dc44a72af3 updated
meillo@marmaro.de
parents: 0
diff changeset
25 This program is meant to be a small(er) alternative to the `mogrify -resize'
0
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
26 command of ImageMagick. Mainly because ImageMagick has lots of dependencies,
5fa0beba15d8 inital commit
meillo@marmaro.de
parents:
diff changeset
27 while the GD-Library has less.