wiki.techinc.nl/includes/media/Bitmap_ClientOnly.php
Alexandre Emsenhuber 320d4e1374 * Standardised file description headers
* Added some descriptions
2010-08-15 17:27:41 +00:00

29 lines
762 B
PHP

<?php
/**
* Handler for bitmap images that will be resized by clients
*
* @file
* @ingroup Media
*/
/**
* Handler for bitmap images that will be resized by clients.
*
* This is not used by default but can be assigned to some image types
* using $wgMediaHandlers.
*
* @ingroup Media
*/
class BitmapHandler_ClientOnly extends BitmapHandler {
function normaliseParams( $image, &$params ) {
return parent::normaliseParams( $image, $params );
}
function doTransform( $image, $dstPath, $dstUrl, $params, $flags = 0 ) {
if ( !$this->normaliseParams( $image, $params ) ) {
return new TransformParameterError( $params );
}
return new ThumbnailImage( $image, $image->getURL(), $params['width'],
$params['height'], $image->getPath() );
}
}