aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Verona2010-06-15 15:06:47 +0200
committerJoakim Verona2010-06-15 15:06:47 +0200
commitf663e78443d5fc1904c63e58df076d1b569499d5 (patch)
tree217b929b3bd5a55d285dfc7bb4d411bce2a3ebd6
parent630bda942a4061c16d7567412ab6692b1ead8a37 (diff)
downloademacs-f663e78443d5fc1904c63e58df076d1b569499d5.tar.gz
emacs-f663e78443d5fc1904c63e58df076d1b569499d5.zip
doc improvement
-rw-r--r--README.imagemagick15
1 files changed, 13 insertions, 2 deletions
diff --git a/README.imagemagick b/README.imagemagick
index 8b933b68f4b..a4910d212ee 100644
--- a/README.imagemagick
+++ b/README.imagemagick
@@ -79,7 +79,7 @@ imagemagick-types-inhibit if you do not want this.
79Images loaded with imagemagick will support a couple of new display 79Images loaded with imagemagick will support a couple of new display
80specifications: 80specifications:
81 81
82- :scale takes a geometry string as defined by ImageMagick: 82- :geometry takes a geometry string as defined by ImageMagick:
83 83
84scale% 84scale%
85scale-x%xscale-y% 85scale-x%xscale-y%
@@ -91,10 +91,14 @@ widthxheight!
91widthxheight> 91widthxheight>
92widthxheight< 92widthxheight<
93area@ 93area@
94{size}{offset} {size}{+-}x{+-}y 94{size}{offset}
95{size}{+-}x{+-}y
95 96
96See the ImageMagick manual for more information. 97See the ImageMagick manual for more information.
97 98
99Furthermore, if the :width and :height keywords are specified, these
100values are used for scaling the image.
101
98- :rotation specifies a rotation angle in degrees. 102- :rotation specifies a rotation angle in degrees.
99 103
100- :index specifies which image inside an image bundle file format, such 104- :index specifies which image inside an image bundle file format, such
@@ -103,6 +107,13 @@ as TIFF or DJVM, to view.
103The image-metadata function can be used to retrieve the total number 107The image-metadata function can be used to retrieve the total number
104of images in an image bundle. This is simmilar to how GIF files work. 108of images in an image bundle. This is simmilar to how GIF files work.
105 109
110- :crop is used to specify a croping area, with the {size}{offset}
111syntax. This is similar to the slice image specification, but has a
112different purpose. :crop removes the croped areas from memory, so its
113memory efficient if you only need to view a certain part of the
114image. :slice can be used to pick diferent parts of the same image, so
115its more disk and display efficient.
116
106 117
107* Changelog entry 118* Changelog entry
1082010-06-12 Joakim Verona <joakim@verona.se> 1192010-06-12 Joakim Verona <joakim@verona.se>