29 lines
762 B
PHP
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() );
|
|
}
|
|
}
|