Extension:VipsScaler - MediaWiki (original) (raw)

MediaWiki extensions manual

VipsScaler Release status: stable
Implementation Media
Description Allows to scale PNG and JPEG images using VIPS
Author(s) Bryan Tong Minh (Bryantalk)
MediaWiki 1.19+
Database changes No
License GNU General Public License 2.0 or later
Download Download extension Git [?]: Browse repository (GitHub) Gerrit code review Git commit log Download source tarball README
Parameters wgVipsCommandwgVipsCommand wgVipsCommandwgVipsOptions wgVipsTestExpirywgVipsTestExpiry wgVipsTestExpirywgVipsExposeTestPage $wgVipsThumbnailerHost
Added rights vipsscaler-test
Hooks used BitmapHandlerCheckImageArea BitmapHandlerTransform
Quarterly downloads 7 (Ranked 85th)
Public wikis using 1,811 (Ranked 203rd)
Translate the VipsScaler extension if it is available at translatewiki.net
Issues Open tasks · Report a bug

The VipsScaler extension creates JPG and PNG thumbnails faster and at low memory usage. The extension replaces MediaWiki core's Media handlers for bitmaps, which default to ImageMagick. It is powered by the free image processing software VIPS, which speeds up resizing of large PNGs, and it improves the appearance of shrunken JPEGs.

The extension shells out to the VIPS binary. By configuring $wgVipsOptions, it can be configured to scale only certain files (for example, big PNG files).

Install VIPS. It can be downloaded from https://libvips.github.io/libvips or your OS repository (see below).

$ apt-get install libvips-tools

$ brew install homebrew/science/vips $ binary symlink is /usr/local/bin/vips

VipsScaler extension

[edit]

$wgVipsCommand

Path to the "vips" command (default: /usr/bin/vips).

$wgVipsOptions

Options and conditions to scale images with this scaler (default: empty). Set to an array of arrays. The inner array contains a condition array, which contains a list of conditions the image should pass for it to be scaled with VIPS. Conditions are mimeType, minArea, maxArea, minShrinkFactor, maxShrinkFactor. The other items in the array are options. Options available are:

Example

$wgVipsOptions = [ // Sharpen jpeg files which are shrunk more than 1.2 [ 'conditions' => [ 'mimeType' => 'image/jpeg', 'minShrinkFactor' => 1.2, ], 'sharpen' => [ 'radius' => 0, 'sigma' => 0.8 ], ], // Other jpeg files [ 'conditions' =>[ 'mimeType' => 'image/jpeg', ], 'sharpen' => false, 'bilinear' => true, ], // Do a simple shrink for PNGs [ 'conditions' => [ 'mimeType' => 'image/png', ], ], ];

$wgVipsExposeTestPage

Allow testing via "Special:VipsTest", which lets you verify it is working and see the difference in output quality. (default: false).

This extension is being used on one or more Wikimedia projects. This probably means that the extension is stable and works well enough to be used by such high-traffic websites. Look for this extension's name in Wikimedia's CommonSettings.php and InitialiseSettings.php configuration files to see where it's installed. A full list of the extensions installed on a particular wiki can be seen on the wiki's Special:Version page.

Categories: