Difference between revisions of "Help:Images"
m (1 revision(s)) |
|||
Line 1: | Line 1: | ||
− | {{ | + | This page explains the image syntax when editing the wiki. Before using images, your wiki must have file uploads enabled (see the {{mediawiki|Manual:Configuring_file_uploads|technical manual}} for details) and you have to [[Help:Managing files|upload a file]]. |
+ | |||
__TOC__ | __TOC__ | ||
{| {{Prettytable}} | {| {{Prettytable}} | ||
Line 9: | Line 10: | ||
|Embed image<br /> (with alt text) | |Embed image<br /> (with alt text) | ||
| | | | ||
− | <code><nowiki>[[Image: | + | <code><nowiki>[[Image:Example.jpg|Sunflowers]]</nowiki></code> |
| | | | ||
− | [[Image: | + | [[Image:Example.jpg|Sunflowers]] |
|- | |- | ||
|Link to description page | |Link to description page | ||
| | | | ||
− | <code><nowiki>[[:Image: | + | <code><nowiki>[[:Image:Example.jpg]]</nowiki></code><br /> |
− | <code><nowiki>[[:Image: | + | <code><nowiki>[[:Image:Example.jpg|Sunflowers]]</nowiki></code> |
| | | | ||
− | [[:Image: | + | [[:Image:Example.jpg]]<br /> |
− | [[:Image: | + | [[:Image:Example.jpg|Sunflowers]] |
|- | |- | ||
|Link directly to file | |Link directly to file | ||
| | | | ||
− | <code><nowiki>[[Media: | + | <code><nowiki>[[Media:Example.jpg]]</nowiki></code><br /> |
− | <code><nowiki>[[Media: | + | <code><nowiki>[[Media:Example.jpg|Sunflowers]]</nowiki></code> |
| | | | ||
− | [[Media: | + | [[Media:Example.jpg]]<br /> |
− | [[Media: | + | [[Media:Example.jpg|Sunflowers]] |
|- | |- | ||
|Thumbnail<br /> (centered, 100 pixels<br /> wide, with caption) | |Thumbnail<br /> (centered, 100 pixels<br /> wide, with caption) | ||
| | | | ||
− | <code><nowiki>[[Image: | + | <code><nowiki>[[Image:Example.jpg|center|thumb|100px|Sunflowers]]</nowiki></code> |
| | | | ||
− | [[Image: | + | [[Image:Example.jpg|center|thumb|100px|Sunflowers]] |
|- | |- | ||
|Border<br /> (100 pixels) <br /> Results in a very small gray border | |Border<br /> (100 pixels) <br /> Results in a very small gray border | ||
− | <!-- Note: because the fine gray border can not be seen when used on | + | <!-- Note: because the fine gray border can not be seen when used on Image:Exaple.jpg (sunflowers image), an image with a white background is used --> |
| | | | ||
− | <code><nowiki>[[Image: | + | <code><nowiki>[[Image:Example-white-bg.jpg|border|100px]]</nowiki></code> |
| | | | ||
− | [[Image: | + | [[Image:Example-white-bg.jpg|border|100px]] |
|- | |- | ||
|Frameless<br />Like thumbnail, respect user preferences for image width but without border and no right float. | |Frameless<br />Like thumbnail, respect user preferences for image width but without border and no right float. | ||
Line 49: | Line 50: | ||
|} | |} | ||
− | == | + | == Syntax == |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
The full syntax for displaying an image is: | The full syntax for displaying an image is: | ||
<code><nowiki>[[Image:{name}|{options}]]</nowiki></code> | <code><nowiki>[[Image:{name}|{options}]]</nowiki></code> | ||
Line 69: | Line 56: | ||
*<code>thumb</code>, <code>thumbnail</code>, or <code>frame</code>: Controls how the image is formatted | *<code>thumb</code>, <code>thumbnail</code>, or <code>frame</code>: Controls how the image is formatted | ||
*<code>left</code>, <code>right</code>, <code>center</code>, <code>none</code>: Controls the alignment of the image on the page | *<code>left</code>, <code>right</code>, <code>center</code>, <code>none</code>: Controls the alignment of the image on the page | ||
+ | *<code>baseline</code>, <code>sub</code>, <code>super</code>, <code>top</code>, <code>text-top</code>, <code>middle</code>, <code>bottom</code>, <code>text-bottom</code>: Controls the vertical alignment of the image on the page | ||
*<code>{width}px</code>: Resizes the image to the given width in pixels | *<code>{width}px</code>: Resizes the image to the given width in pixels | ||
− | *<code>{caption text}</code> | + | *<code>{caption text}</code>: Must not end with "px" |
+ | * Special cases: | ||
+ | ** <code>page=1</code>: Displays the specified page when showing a djvu file | ||
+ | *<code>link={destination}</code>: Allows to link to an arbitrary title, URL or just nowhere ([[rev:41727|1.14+]]) | ||
+ | *<code>alt={alternative text}</code>: For changing the alternative text (<code>alt=""</code>) of an image ([[rev:41837|1.14+]]) | ||
+ | |||
The options can be given in any order. If a given option does not match any of the other possibilities, it is assumed to be the caption text. Caption text can contain wiki links or other formatting. | The options can be given in any order. If a given option does not match any of the other possibilities, it is assumed to be the caption text. Caption text can contain wiki links or other formatting. | ||
− | ===Gallery of images | + | == Other files == |
+ | You can link to an external file using the same syntax used for linking to an external web page. | ||
+ | *<code><nowiki>[http://url.for/some/image.png]</nowiki></code> | ||
+ | Or with different text: | ||
+ | *<code><nowiki>[http://url.for/some/image.png link text here]</nowiki></code> | ||
+ | |||
+ | If it is enabled on your wiki (see {{mediawiki|Manual:$wgAllowExternalImages}}), you can also embed external images. To do that, simply insert the image's url: | ||
+ | *<code><nowiki>http://url.for/some/image.png</nowiki></code> | ||
+ | |||
+ | == Gallery of images == | ||
It's easy to make a gallery of thumbnails with the <code><nowiki><gallery></nowiki></code> tag. The syntax is: | It's easy to make a gallery of thumbnails with the <code><nowiki><gallery></nowiki></code> tag. The syntax is: | ||
<pre> | <pre> | ||
Line 92: | Line 94: | ||
Image:Example.jpg | Image:Example.jpg | ||
Image:Example.jpg|''italic caption'' | Image:Example.jpg|''italic caption'' | ||
+ | Image:Example.jpg|on page "{{PAGENAME}}" | ||
</gallery> | </gallery> | ||
</pre> | </pre> | ||
Line 101: | Line 104: | ||
Image:Example.jpg | Image:Example.jpg | ||
Image:Example.jpg|''italic caption'' | Image:Example.jpg|''italic caption'' | ||
+ | Image:Example.jpg|on page "{{PAGENAME}}" | ||
</gallery> | </gallery> | ||
− | == | + | == See also == |
− | + | * [[Help:Linked images|Linked images]] | |
− | * | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
+ | ==External Link== | ||
+ | * [[wikipedia:Project:Extended image syntax|Wikipedia:Extended image syntax]] | ||
[[Category:Help|Images]] | [[Category:Help|Images]] |
Revision as of 18:21, 28 October 2008
This page explains the image syntax when editing the wiki. Before using images, your wiki must have file uploads enabled (see the technical manual for details) and you have to upload a file.
Description | You type | You get |
Embed image (with alt text) |
|
|
Link to description page |
|
|
Link directly to file |
|
|
Thumbnail (centered, 100 pixels wide, with caption) |
|
|
Border (100 pixels) Results in a very small gray border |
|
|
Frameless Like thumbnail, respect user preferences for image width but without border and no right float. |
|
Syntax
The full syntax for displaying an image is:
[[Image:{name}|{options}]]
Where options can be zero or more of the following, separated by pipes:
thumb
,thumbnail
, orframe
: Controls how the image is formattedleft
,right
,center
,none
: Controls the alignment of the image on the pagebaseline
,sub
,super
,top
,text-top
,middle
,bottom
,text-bottom
: Controls the vertical alignment of the image on the page{width}px
: Resizes the image to the given width in pixels{caption text}
: Must not end with "px"- Special cases:
page=1
: Displays the specified page when showing a djvu file
link={destination}
: Allows to link to an arbitrary title, URL or just nowhere (1.14+)alt={alternative text}
: For changing the alternative text (alt=""
) of an image (1.14+)
The options can be given in any order. If a given option does not match any of the other possibilities, it is assumed to be the caption text. Caption text can contain wiki links or other formatting.
Other files
You can link to an external file using the same syntax used for linking to an external web page.
[http://url.for/some/image.png]
Or with different text:
[http://url.for/some/image.png link text here]
If it is enabled on your wiki (see Manual:$wgAllowExternalImages), you can also embed external images. To do that, simply insert the image's url:
http://url.for/some/image.png
Gallery of images
It's easy to make a gallery of thumbnails with the <gallery>
tag. The syntax is:
<gallery> Image:{filename}|{caption} Image:{filename}|{caption} {...} </gallery>
Captions are optional, and may contain wiki links or other formatting.
for example:
<gallery> Image:Example.jpg|Item 1 Image:Example.jpg|a link to [[Help:Contents]] Image:Example.jpg Image:Example.jpg Image:Example.jpg|''italic caption'' Image:Example.jpg|on page "{{PAGENAME}}" </gallery>
is formatted as:
a link to Help:Contents