Help:Images: Difference between revisions
No edit summary |
No edit summary |
||
(8 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{ | {{PD Help Page}} | ||
{| | {{mbox | ||
| text= '''These instructions were obtained from [http://www.mediawiki.org/wiki/Help:Images MediaWiki's Help:Images.]''' —C-chan | |||
|} | | image= Cchan.png | ||
| caption= C-chan's avatar | |||
| border= black | |||
| background= #D3F1FF | |||
}} | |||
{{mbox | |||
| text= '''The thumbnail feature should work properly now. Please report any problems if any.''' —Fedora-tan | |||
| image= Fedora_logo.png | |||
| caption= Fedora-tan's avatar | |||
| border= black | |||
| background= yellow | |||
}} | |||
{| border=1 cellpadding=4 cellspacing=0 | {| border=1 cellpadding=4 cellspacing=0 | ||
Line 14: | Line 22: | ||
!You get | !You get | ||
|- | |- | ||
|Embed image br / (with alt text) | |Embed image <br /> (with alt text)<br /><br />'''Note : Please use thumbnails when you post pictures (see below). All pictures larger than 300x300 pixels not thumbnailed will be removed.''' | ||
| | |<code><nowiki>[[Image:Example2.jpg|Linux-tan]]</nowiki></code> | ||
| | | | ||
[[Image:Example2.jpg|Linux-tan]] | [[Image:Example2.jpg|Linux-tan]] | ||
Line 22: | Line 30: | ||
|Link to description page | |Link to description page | ||
| | | | ||
<code><nowiki>[[:Image:Example2.jpg]]</nowiki></code><br /> | |||
<code><nowiki>[[:Image:Example2.jpg|Linux-tan]]</nowiki></code> | |||
| | | | ||
[[:Image:Example2.jpg]]br / | [[:Image:Example2.jpg]]<br /> | ||
[[:Image:Example2.jpg|Linux-tan]] | [[:Image:Example2.jpg|Linux-tan]] | ||
|- | |- | ||
|Link directly to file | |Link directly to file | ||
| | | | ||
<code><nowiki>[[Media:Example2.jpg]]</nowiki></code><br /> | |||
<code><nowiki>[[Media:Example2.jpg|Linux-tan]]</nowiki></code> | |||
| | | | ||
[[Media:Example2.jpg]]br / | [[Media:Example2.jpg]]<br /> | ||
[[Media:Example2.jpg|Sunflowers]] | [[Media:Example2.jpg|Sunflowers]] | ||
|- | |- | ||
| | |Simple Thumbnail<br /> (Just the thumb option) | ||
| | |||
<code><nowiki>[[Image:Example2.jpg|thumb]]</nowiki></code> | |||
| | |||
[[Image:Example2.jpg|thumb]] | |||
|- | |||
|Advanced Thumbnail<br /> (centered, 100 pixels<br /> wide, with caption) | |||
| | | | ||
<code><nowiki>[[Image:Example2.jpg|center|thumb|100px|Linux-tan]]</nowiki></code> | |||
| | | | ||
[[Image:Example2.jpg|center|thumb|100px|Linux-tan]] | [[Image:Example2.jpg|center|thumb|100px|Linux-tan]] | ||
Line 46: | Line 60: | ||
__TOC__ | __TOC__ | ||
To use an image or other file which has been [[Help:Managing files|uploaded to the wiki]], use: | To use an image or other file which has been [[Help:Managing files|uploaded to the wiki]], use: | ||
* | *<code><nowiki>[[Image:Example2.jpg]]</nowiki></code> | ||
If you add a pipe (|) and some text after the filename, the text will be used as alternative text for text-only browsers: | If you add a pipe (|) and some text after the filename, the text will be used as alternative text for text-only browsers: | ||
* | *<code><nowiki>[[Image:Example2.jpg|alternative text]]</nowiki></code> | ||
If you don't want to display the image, you can link to the file's description page, by adding a colon: | If you don't want to display the image, you can link to the file's description page, by adding a colon: | ||
* | *<code><nowiki>[[:Image:Example2.jpg]]</nowiki></code> | ||
To bypass the description page and link directly to a file , use the Media pseudo-namespace: | To bypass the description page and link directly to a file , use the Media pseudo-namespace: | ||
* | *<code><nowiki>[[Media:Example2.jpg]]</nowiki></code> | ||
You can also make piped links if you want some other text to be used: | You can also make piped links if you want some other text to be used: | ||
* | *<code><nowiki>[[:Image:Example2.jpg|link text]]</nowiki></code> | ||
* | *<code><nowiki>[[Media:Example2.jpg|link text]]</nowiki></code> | ||
===Advanced options=== | ===Advanced options=== | ||
The full syntax for displaying an image is: | The full syntax for displaying an image is: | ||
<code><nowiki>[[Image:{name}|{options}]]</nowiki></code> | |||
Where options can be zero or more of the following, separated by pipes: | Where options can be zero or more of the following, separated by pipes: | ||
* | *<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{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> | ||
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=== | ===Gallery of images=== | ||
It's easy to make a gallery of thumbnails with the | It's easy to make a gallery of thumbnails with the <code><nowiki>gallery</nowiki></code> tag. The syntax is: | ||
pre | <pre> | ||
gallery | <gallery> | ||
Image:{filename}|{caption} | Image:{filename}|{caption} | ||
Image:{filename}|{caption} | Image:{filename}|{caption} | ||
{...} | {...} | ||
/gallery | </gallery> | ||
/pre | </pre> | ||
Captions are optional, and may contain wiki links or other formatting. | Captions are optional, and may contain wiki links or other formatting. | ||
for example: | for example: | ||
pre | <pre> | ||
gallery | <gallery> | ||
Image:Example2.jpg|Item 1 | Image:Example2.jpg|Item 1 | ||
Image:Example2.jpg|a link to [[Help:Contents]] | Image:Example2.jpg|a link to [[Help:Contents]] | ||
Line 89: | Line 103: | ||
Image:Example2.jpg | Image:Example2.jpg | ||
Image:Example2.jpg|''italic caption'' | Image:Example2.jpg|''italic caption'' | ||
/gallery | </gallery> | ||
/pre | </pre> | ||
is formatted as: | is formatted as: | ||
gallery | <gallery> | ||
Image: | Image:Example2.jpg|Item 1 | ||
Image: | Image:Example2.jpg|a link to [[Help:Contents]] | ||
Image: | Image:Example2.jpg | ||
Image: | Image:Example2.jpg | ||
Image: | Image:Example2.jpg|''italic caption'' | ||
/gallery | </gallery> | ||
==Other files== | ==Other files== | ||
You can link to an external file using the same syntax used for [[Help:Links#External links|linking to an external web page]]. This feature has to be enabled by the admin; in the new releases of MediaWiki its disabled due to security reasons. | You can link to an external file using the same syntax used for [[Help:Links#External links|linking to an external web page]]. This feature has to be enabled by the admin; in the new releases of MediaWiki its disabled due to security reasons. | ||
* | *<code><nowiki>[http://url.for/some/image.png]</nowiki></code> | ||
Or with different text: | Or with different text: | ||
* | *<code><nowiki>[http://url.for/some/image.png link text here]</nowiki></code> | ||
If it is enabled on your wiki, you can also embed external images. To do that, simply insert the url: | If it is enabled on your wiki, you can also embed external images. To do that, simply insert the url: | ||
* | *<code><nowiki>http://url.for/some/image.png</nowiki></code> | ||
==External Links== | ==External Links== | ||
[http://www.mediawiki.org/wiki/Help:Images MediaWiki Help:Images] | [http://www.mediawiki.org/wiki/Help:Images MediaWiki Help:Images] |
Latest revision as of 14:56, 21 December 2023
Important note: When you edit this page, you agree to release your contribution into the Public Domain. If you don't want this or can't do this because of license restrictions, please don't edit. This page is one of the Public Domain Help Pages, which can be freely copied into fresh wiki installations and/or distributed with MediaWiki software; see Help:Contents for an overview of all pages. |
These instructions were obtained from MediaWiki's Help:Images. —C-chan |
The thumbnail feature should work properly now. Please report any problems if any. —Fedora-tan |
Description | You type | You get |
---|---|---|
Embed image (with alt text) Note : Please use thumbnails when you post pictures (see below). All pictures larger than 300x300 pixels not thumbnailed will be removed. |
[[Image:Example2.jpg|Linux-tan]]
|
|
Link to description page |
|
|
Link directly to file |
|
|
Simple Thumbnail (Just the thumb option) |
|
|
Advanced Thumbnail (centered, 100 pixels wide, with caption) |
|
Uploaded files
To use an image or other file which has been uploaded to the wiki, use:
[[Image:Example2.jpg]]
If you add a pipe (|) and some text after the filename, the text will be used as alternative text for text-only browsers:
[[Image:Example2.jpg|alternative text]]
If you don't want to display the image, you can link to the file's description page, by adding a colon:
[[:Image:Example2.jpg]]
To bypass the description page and link directly to a file , use the Media pseudo-namespace:
[[Media:Example2.jpg]]
You can also make piped links if you want some other text to be used:
[[:Image:Example2.jpg|link text]]
[[Media:Example2.jpg|link text]]
Advanced options
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 page{width}px
: Resizes the image to the given width in pixels{caption text}
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
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:Example2.jpg|Item 1 Image:Example2.jpg|a link to [[Help:Contents]] Image:Example2.jpg Image:Example2.jpg Image:Example2.jpg|''italic caption'' </gallery>
is formatted as:
a link to Help:Contents
Other files
You can link to an external file using the same syntax used for linking to an external web page. This feature has to be enabled by the admin; in the new releases of MediaWiki its disabled due to security reasons.
[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, you can also embed external images. To do that, simply insert the url:
http://url.for/some/image.png