Movatterモバイル変換


[0]ホーム

URL:


Jump to content
MediaWiki
Search

Manual:Image administration

From mediawiki.org
Translate this page
Languages:

This article describes how MediaWiki handles and stores files, and gives some information on configuring.

This applies to images as well as to any other type of file that can be uploaded.All files are stored with a corresponding article in the "File:" namespace.Prior to MediaWiki 1.14, the "Image:" namespace was used instead."Image:" is still retained as an alias for backward compatibility.

Upload and usage of images

[edit]

SeeHelp:Images

Enable upload of images

[edit]

To upload files, these conditions have to be met:

  1. MediaWiki must have uploads enabled. Set$wgEnableUploads totrue.
  2. The file type must be allowed. More information:$wgFileExtensions.
  3. The user must be in a group with the "upload" right. By default this is given to all logged-in users.

Uploads are done usingSpecial:Upload.

SeeConfiguring file uploads,MIME type detection andAdding support for new filetypes

Relevant parameters for file handling

[edit]

These parameters are relevant:

Image thumbnailing

[edit]

MediaWiki'simage syntax allows dynamic resizing andthumbnailing of images (seeManual:Configuring file uploads for general help on file uploads).

Image thumbnailing requires eitherImageMagick orGD library – neither are part of the default MediaWiki installation.

GD

[edit]

PHP comes with GD graphics library enabled by default. GD will not require any configuration or modification to be used.

It is recommended to use GD on Windows systems.

GD can be downloaded fromhttps://libgd.github.io/.In recent PHP versions this is not required.

ImageMagick

[edit]

In MediaWiki, enable ImageMagick inLocalSettings.php by setting$wgUseImageMagick totrue.

ImageMagick can be downloaded fromhttps://imagemagick.org/.

Once ImageMagick is installed, you must enable ImageMagick and point MediaWiki to theconvert orconvert.exe program on your computer inLocalSettings.php like this:

$wgUseImageMagick=true;#$wgImageMagickConvertCommand = 'C:/ImageMagick/convert.exe'; # for Windows$wgImageMagickConvertCommand='/usr/bin/convert';# for Linux

If you use ImageMagick, set$wgUseImageMagick totrue in LocalSettings.php.Make sure that the command is executable by the web server process.For example, Windows users will want to change the default to "C:\ImageMagick\convert.exe" (or similar).

To re-create old thumbnail files before you used ImageMagick you can use$wgThumbnailEpoch.

If rendering fails silently, check and increase$wgMaxShellMemory.

See the help page onImage Thumbnails not working for troubleshooting.

GraphicsMagick can also be used as an alternative to ImageMagick.You will need to set$wgCustomConvertCommand to the following.E.g.:

$wgUseImageMagick=false;$wgCustomConvertCommand="gm convert %s -resize %wx%h %d";

libvips

[edit]

MediaWiki core does not supportlibvips but there are extensions that let use this image processing library.


Image formats

[edit]

GIF

[edit]

For thumbnailing GIF-Animations under windows, you need to install ImageMagick as described above.

SVG

[edit]
Wikimania 2016 presentation on Dynamic SVG

MediaWiki supports SVG image rendering: if enabled, SVG images can be used like other image files — they will automatically be rendered as a PNG file and thumbnailed as needed on the fly.If you're on a shared host and no SVG renderer is pre-installed, you should probably ask your provider to install it for you.

To enable SVG support:

  1. Allow upload of SVG files in theLocalSettings.php file:$wgFileExtensions[] = 'svg';. Note that MediaWiki will refuse SVG files containing JavaScript, for security reasons.
    If you get an error saying the file is corrupt, make sureMIME type detection is working properly.
  2. Add$wgSVGConverter toLocalSettings.php and set the renderer you want to use.
    Available options areImageMagick,ImagickExt,sodipodi,inkscape,batik,rsvg, andimgserv.
    For example:$wgSVGConverter='ImageMagick';
    • If the converter program is not in the system path, you have to specify thedirectory that contains the program using$wgSVGConverterPath.
    • librsvg is fast but not very accurate. It depends on a large number of libraries. To automatically install all these libraries, you may want to use a package manager. The Wikimedia projects use rsvg.
    • Apache Batik'santi-aliasing is sometimes suboptimal. Its SVG parsing is more strict, causing it to reject "almost valid" SVG files that other renderers accept (e.g.commons:File:UbuntuCoF.svg). Batik relies on Java, and is much slower than rsvg, though this may not be a huge issue unless you're constantly adding SVG files. SeeSVG benchmarks. Requires a lot of work to get running, if not included in your distribution.
    • Inkscape also does an accurate job of SVGs, half the speed of rsvg, but was designed for interactive graphical use; however, it comes with inkview which is a viewer/converter program – it requires a writable home directory for the user it's run as. Since it will be running as userwww or something similar, it will try to create.inkscape/ and.gnome2/ directories in the corresponding home directory, and will fail silently,crash orhang indefinitely if it is not able to. Inkscape is preferable to rsvg (a) on Windows (it comes as a standalone package) or (b) if you have important SVGs drawn in Inkscape that do not render correctly in rsvg. Inkscape has as complicated a dependency chain as librsvg — use only if it's in your distribution or available as a complete standalone package.
    • Sodipodi is the program Inkscape was forked from. The same considerations apply. Sodipod is no longer under active development.
    • ImageMagick is the default but its rendering works imperfectly; avoid it if possible.
      • On Windows, $wgConvertPath must be set to avoid a conflict with Windows' own convert.exe. One simple alternative in this scenario is to add toLocalSettings.php the line$wgSVGConverters['ImageMagick']='"'.$wgImageMagickConvertCommand.'" -background white -thumbnail $widthx$height^! $input PNG:$output';, which also allows for spaces in the path.
      • To prevent thumbnail creation errors with ImageMagick, if it's ≥ 7.0.9-25, then Inkscape must also be ≥ 1.x.x. Likewise, if ImageMagick is < 7.0.9-25, then Inkscape must also be < 1.x.x. SeeImageMagick issue.
    • ThePHP Imagick extension supports SVG rendering, however the same considerations as for the regular ImageMagick apply.
    • TheGD library is not capable of converting SVG images to the PNG format, at least according to Joen Asmussen's June 2008NoScope blog.
    • Over 98% of web browsers have at least basic support for displaying SVG files directly, but MediaWiki does not use that by default.[notes 1] Without theNativeSvgHandler extension, MediaWiki only supports client-side rendering inMediaWiki 1.41 (released December 2023) and newer, by setting$wgSVGNativeRendering =true.

Set$wgSVGConverter =false if SVG rendering is not needed and you wish to make your users download the svg file in order to view it.

Troubleshooting

[edit]

If you see a blank square instead of SVG (Chrome) or no image at all (Firefox) and all PNG links lead to 404 error and you don't see any other error message anywhere please check$wgGenerateThumbnailOnParse variable.Setting it tofalse may make SVG transformation deferred always.Make sure thatproc_open andsymlink PHP methods are enabled (they may be disabled in php.ini for security or performance reasons).


JPEG (using GD)

[edit]

Simply adding the following line toLocalSettings.php will cause auto fall back to the GD library:

$wgUseImageMagick=false;

For errors with JPEG thumbnails, seeJPEG (using GD).

TIFF

[edit]

Generating thumbnails of TIFF files requires MediaWiki 1.15.0 or newer.

  1. Allow upload of TIFF files in theLocalSettings.php file:$wgFileExtensions[] = 'tif';
  2. Add$wgTiffThumbnailType toLocalSettings.php and set to either jpg or png to specify which type of thumbnail you wish to have generated.
  3. Making thumbnails of TIFF files may require system resources beyond those needed for thumbnailing JPEG, GIF, or PNG files. Consider appropriate settings for$wgMaxImageArea and$wgMaxShellMemory

DjVu

[edit]
See also:Manual:How to use DjVu with MediaWiki


Deletion of images

[edit]

Files, like wiki pages, can only be deleted by users with theDelete pages (delete) permission (administrators by default).Deletion of files is done by deleting the associated description page (or by clicking thedelete all link in theFile history table).

Deletion of individual revisions

[edit]

If a file has been altered, there is a revision history of the files which is displayed on the file article page.Each revision has adelete link.If this is clicked, the revision and the file are deleted.

The versions of files are separate from the page history of the file description page.

Information about old revisions offiles are stored in theoldimage table while information on old revisions of thepages are stored in therevision table.

Undeleting files

[edit]

Files can be undeleted in exactly the same way as normal wiki pages.The directory in which deleted files are stored is defined byManual:$wgDeletedDirectory.Information about deleted images are stored in thefilearchive table.

Deletion of Archived Files

[edit]

Since MediaWiki version 1.11, deleted images are still stored on the server by default.If you want to delete selected archived images, you can do so using theeraseArchivedFile.php maintenance script.If you want to delete all of them completely, you can do that with thedeleteArchivedFiles.php script.If you delete archived files, you can not undelete those files anymore.

Reasons for Deleting a File

[edit]

When choosing to delete a file, as describedabove, users will be asked to provide a reason for deletion.The available reasons can be edited on theMediaWiki:Filedelete-reason-dropdown of your wiki.

Modifying the display of file pages

[edit]

MediaWiki:Filepage.css is astandard stylesheet which can be used to modify the display of file pages.The contents of Filepage.css will be loaded only on File namespace pages.If remote files are enabled, the remote wiki's version of this page will also load.

Data storage

[edit]

Whenever an image is uploaded, several things are created:

  1. An article in the file namespace with the name of the file, e.g. File:MyPicture.png. This page is stored and can be edited like any other page.
  2. The file itself is stored in a folder on the file system with whitespaces merged and replaced with_.
  3. If necessary and thumbnailing is available, thumbnailed versions of the file will be created when necessary (such as for the usage on the file description page). These are stored in the thumb directory of the image directory, in a separate directory for each main file.

If$wgHashedUploadDirectory is enabled (by default), MediaWiki creates several subdirectories in the images directory.

The directory names are from the first two characters of the md5 hash of the final filename.

Folders

[edit]

All image files are stored in a folder determined by$wgUploadPath (images/, by default).

Description of named image subfolders:

archive
This is the storage place for files that have been replaced by newer versions.
temp
Used for temporary storage of files during image uploading. (Due toT11018, these files may not always be automatically deleted).
thumb
Thumbnails (automatically generated) for the files. If these are deleted, they are automatically regenerated when needed.

Depending on the configuration, there may be additional image subfolders:

math
Folder to store your rendered TeX input, see alsoExtension:Math orManual:Math.
x/xy
If$wgHashedUploadDirectory is set totrue (which is the default), images will be stored in subfolders of the images, thus making file paths look likeimages/a/ab/filename.jpg. SeeManual:$wgHashedUploadDirectory for more details on why this might be desired and how this system works.

Database tables

[edit]
  • The file description page is stored as any page in thepage,text,revision etc. tables
  • image - Holds some metadata such as the size of the file and the upload date.
  • oldimage - This stores information for files that have been replaced with newer versions.
  • filearchive - Holds the information on the deleted files.
  • imagelinks - Records what pages use a file.

Space usage

[edit]

Files need considerably more space than articles.The following calculations assume a block size of 4KB with Linux/Unix servers.

The default setting is$wgHashedUploadDirectory =true.

Space requirements for all directories:

  • image directories: 0-f/x0-f: max. 16*16 = 256 directories = 256*4 KB = 1024 KB
  • archive directories: 0-f/x0-f: max. 16*16 = 256 directories = 256*4 KB = 1024 KB
  • thumb directories: 0-f/x0-f: max. 16*16 = 256 directories = 256*4 KB = 1024 KB
  • temp directories: 0-f/x0-f: max. 16*16 = 256 directories = 256*4 KB = 1024 KB

Therefore, the basic amount of space needed without any images uploaded is 4 MB in theory (although the directories are created only when needed).

For each file we need:

  • size of the original image file + 2 KB average overhead

For files that need to be thumbnailed:

  • size of the created thumbnail(s) + 2 KB average overhead (each)
  • directory for thumbnail (4KB) (each image has its own thumbnail directory)

Examples:

  • image 20,778 Byte png (small size, no thumb): 24 KB for the image: Total 24 KB
  • image 123,000 Byte jpeg (big size, auto thumb): 124 KB for the image, 4 KB for the thumb directory, 64KB for the thumb: Total: 192 KB

File Access

[edit]

Uploaded files are generally served directly by the web server, not through MediaWiki.While there may be a minimal level of security through obscurity with path encryption (e.g. /c/c4/...) if$wgHashedUploadDirectory is set, the path can be calculated easily from the file name and does not provide true protection.

For limiting access to authorized users, seeManual:Image authorization.

Upload form

[edit]

See thedocumentation on configuring the upload form.

Licensing

[edit]

MediaWiki allows licenses to be added to files uploaded from theSpecial:Upload page.The list of licenses that appear in the license selection dropdown can be edited on theMediaWiki:Licenses page by a sysop.

The page should be a bulleted list of items, and can have sub-items.Each item can have one or more parameters, with the parameter separated by the pipe character (|).

To make headers/categories, use only one parameter in a list item.The text will be what appears in the dropdown list, and will appear greyed-out and unclickable.

To add license options, two or more parameters are required.The first parameter will be the template name to use, without the double square brackets.The last parameter will be what appears in the dropdown list for that license.Any additional parameters between the first and last parameters will be passed as arguments to the template.When a license is selected, a preview of what it would look like on the final page is shown in the upload wizard.

Below is asimple example (not using real templates) of howMediaWiki:Licenses should be formatted:

Work typeCoverageUsed template
Licence template selection for your work
Work without licence{{no-lic|No license.}}
Work made be meUsed on this wiki{{self-lic|And it can only be used on this wiki.}}
Used anywhere{{self-lic|free=yes|And I allow it to be used anywhere.}}
Work made by someone elseWork belongs to thepublic domain{{pd-lic|It's in the public domain.}}
Work iscopyrighted{{copyright-lic|It's copyrighted.}}
Work is under aCreativeCommons license{{cc-lic|It uses some CreativeCommons license.}}
Work is under theCC-BY-SA license{{cc-lic|by-sa|It uses the CC-BY-SA license.}}

The above assumes each template ending in "-lic" exists, where some of those templates take positional arguments such as "by-sa" and others take named arguments such as "free=yes".Selecting the option "And I allow it to be used anywhere", for example, would add the following template call to the page of the new file:

{{self-lic|free=yes}}

Sites like Wikipedia and WikiMedia Commons will also use thesubst: tag, such as WikiMedia Common's usage of it below:

** subst:Template 2|flickrreview|subst:uwl|Image from Flickr and I do not know the license

"Template 2" is an actual template that will take two parameters (being template names) and surround them with double curly brackets so they get transcluded on the page of the new image."uwl" is a template, whose documentation requires using it with the "subst:" tag instead of directly.The above will result in the following being added to the uploaded file's page:

{{flickrreview}}{{subst:uwl}}

On Wikipedia, substitution is used in other ways, such as adding a timestamp with the license at the time of upload.

For detailed real world example, seeWikipedia:MediaWiki:Licenses orCommons:MediaWiki:Licenses.

Foreign Repositories

[edit]

It is possible to access files stored in foreign repositories, without needing to upload them to the wiki, by setting the$wgForeignFileRepos array.This feature offers several possibilities:

  • ForeignAPIRepo accesses files from a remote MediaWiki installation, such asWikimedia Commons, through its API
  • ForeignDBRepo accesses files through a database, and is useful for creatingwiki families
  • FSRepo accesses files from a local folder

In all cases, one would be able to embed files into a page using ordinaryimage syntax and specifying the name of the file in the foreign repository.Note that some of the above implementations are still experimental, and might not be suitable for production sites.

Notes

[edit]
  1. Wikimedia sites also do not rely on client-side rendering, despite a request to do so,T5593.
Retrieved from "https://www.mediawiki.org/w/index.php?title=Manual:Image_administration&oldid=7694596"
Categories:

[8]ページ先頭

©2009-2025 Movatter.jp