]> sipb.mit.edu Git - ikiwiki.git/blob - doc/plugins/img.mdwn
fix
[ikiwiki.git] / doc / plugins / img.mdwn
1 [[template id=plugin name=img author="Christian Mock"]]
2 [[tag type/chrome]]
3
4 This is an image handling plugin. While ikiwiki supports inlining full-size
5 images by making a [[WikiLink]] that points to the image, using this plugin
6 you can easily scale down an image for inclusion onto a page, providing a
7 link to a full-size version.
8
9 This plugin uses the [ImageMagick](http://www.imagemagick.org/) tools via
10 [PerlMagick](http://www.imagemagick.org/www/perl-magick.html).
11
12 Note that this is a stripped down version of Christian Mock's
13 [[original_img_plugin|contrib/img]].
14
15 ## usage
16
17         \[[img image1.jpg size="200x200" alt="clouds"]]
18
19 The image file will be searched for using the same rules as used to find
20 the file pointed to by a [[WikiLink]].
21
22 The `size` parameter is optional, defaulting to full size. Note that the
23 original image's aspect ratio is always preserved, even if this means
24 making the image smaller than the specified size.
25
26 You can also pass `alt`, `class` and `id` parameters. These are passed through
27 unchanged to the html img tag.
28
29 The `link` parameter is used to control whether the scaled down image links
30 to the full size version. By default it does; set "link=no" to disable
31 this.
32
33 You can also set default values that will be applied to all later images on
34 the page, unless overridden. Useful when including many images on a page.
35
36         \[[img defaults size=200x200 alt="wedding photo"]]
37         \[[img photo1.jpg]]
38         \[[img photo2.jpg]]
39         \[[img photo3.jpg size=200x600]]