Differences between version 3 and previous revision of ImageMagick.
Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History
Newer page: | version 3 | Last edited on Wednesday, April 14, 2004 6:32:00 am | by AristotlePagaltzis | Revert |
Older page: | version 2 | Last edited on Tuesday, April 13, 2004 4:36:44 pm | by AlastairPorter | Revert |
@@ -1,7 +1,5 @@
-A
collection of tools to mozify images (
mostly from the command line)
.
-
-some of the things ImageMagick can do
include:
+[ImageMagick | http://www.imagemagick.org/] is a
collection of tools to mozify images,
mostly from the CommandLine
. Capabilities
include:
* Resize, rotate, sharpen, color reduce, or add special effects to an image
* Create a montage of image thumbnails
* Create a transparent image suitable for use on the Web
@@ -9,20 +7,23 @@
* Create a composite image by combining several separate images
* Draw shapes or text on an image
* Decorate an image with a border or frame
-http://www.imagemagick.org/
+----
-!!Usage Examples
+!
!! Usage Examples
+
+! Resizing
-!Resizing
convert -sample width x height input.jpg output.jpg
+
The widths/heights can also take % values. It scales proportionally, so going 25%x25% on a non-square image will still make it come out non-square
-!Joining images together
+! Joining images together
convert files +append output.jpg
-The +append appears to join them together left to right. -append possibly does something else. Haven't really looked into it
+
+
The +append appears to join them together left to right. -append possibly does something else. Haven't really looked into it.
Situation: You have a bunch of digital photos that you want to string next to each other for a website banner
1. Resize them all to 400px high (Just for ease of doing stuff later)
@@ -32,8 +33,10 @@
convert -sample x400 "$img" "$img"
done
2. Join them together
+
convert *.jpg +append output.jpg
+
This will of course join them in alphabetical order. You may want to do something about that.
-3. final
resize/add gradients in [TheGIMP]
+3. Final
resize/add gradients in [TheGIMP]