Manual:thumb.php

From Linux Web Expert

The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Részletek

thumb.php is a script used for creating and streaming thumbnails.

To use it, set $wgThumbnailScriptPath to the path of this file.

Parameters are f for file name, w for width, p for page in multipaged files (if available).

Példa: https://commons.wikimedia.org/w/thumb.php?f=Delle_strade_ferrate_e_della_loro_futura_influenza_in_Europa.djvu&w=600&p=206

404-es hiba kezelése

A szkript alkalmazható a nem található képek kezeléséhez. Használatához kövesd az alábbi lépéseket, majd állítsd a $GenerateThumbnailOnParse változót false értékre. Ha a LocalSettings.php-ben beállítottad a $wgLocalFileRepot, az alábbi beállításokra is szükséged lesz:

$wgLocalFileRepo['transformVia404'] = true;
Példa: https://www.mediawiki.org/w/thumb.php?f=example.jpg&width=100

Scripted transform

Just add the following code to the bottom of LocalSettings.php .

$wgThumbnailScriptPath = "$wgScriptPath/thumb.php";

No web server configuration needed. This will cause thumb.php to either return the file if its already been rendered, or render the file on demand if needed.

Lásd még