debian/resize-gd-debian
diff control @ 0:5fa0beba15d8
inital commit
author | meillo@marmaro.de |
---|---|
date | Sat, 14 Jun 2008 19:19:02 +0200 |
parents | |
children | 69dc44a72af3 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/control Sat Jun 14 19:19:02 2008 +0200 1.3 @@ -0,0 +1,27 @@ 1.4 +Source: resize-gd 1.5 +Section: graphics 1.6 +Priority: extra 1.7 +Maintainer: markus schnalke <meillo@marmaro.de> 1.8 +Homepage: http://prog.marmaro.de/resize-gd 1.9 +Build-Depends: debhelper (>= 5), libgd2-noxpm-dev | libgd2-xpm-dev 1.10 +Standards-Version: 3.8.0 1.11 + 1.12 +Package: resize-gd 1.13 +Architecture: i386 1.14 +Depends: ${shlibs:Depends} 1.15 +Description: resizes images using the gd-library 1.16 + The program has two modes: 1.17 + * aspect ratio of the images is preserved and only shrinking is done. Smaller 1.18 + images remain unmodified. 1.19 + * the images are resized to match a specific size. The images probably get 1.20 + stretched and enlarged. 1.21 + . 1.22 + All resizing is done in-place. 1.23 + . 1.24 + Only JPEG and PNG files are supported. The filetype is detected by the 1.25 + filename suffix which has to be either ‘.jpg’ or ‘.png’ (in lowercase 1.26 + letters). Unsupported files get skipped. 1.27 + . 1.28 + This program is meant to be a small(er) alternative to the mogrify -resize 1.29 + command of ImageMagick. Mainly because ImageMagick has lots of dependencies, 1.30 + while the GD-Library has less.