25use Wikimedia\AtEase\AtEase;
42 return ( $file->getWidth() && $file->getHeight() );
51 return [
'img_width' =>
'width' ];
59 return in_array( $name, [
'width',
'height' ] ) && $value > 0;
68 if ( isset( $params[
'physicalWidth'] ) ) {
69 $width = $params[
'physicalWidth'];
70 } elseif ( isset( $params[
'width'] ) ) {
71 $width = $params[
'width'];
76 # Removed for ProofreadPage
77 # $width = intval( $width );
87 if ( preg_match(
'/^(\d+)px$/', $str, $m ) ) {
88 return [
'width' => $m[1] ];
99 return [
'width' => $params[
'width'] ];
111 if ( !isset( $params[
'width'] ) ) {
115 if ( !isset( $params[
'page'] ) ) {
118 $params[
'page'] = (int)$params[
'page'];
119 if ( $params[
'page'] > $image->pageCount() ) {
120 $params[
'page'] = $image->pageCount();
123 if ( $params[
'page'] < 1 ) {
128 $srcWidth = $image->getWidth( $params[
'page'] );
129 $srcHeight = $image->getHeight( $params[
'page'] );
131 if ( isset( $params[
'height'] ) && $params[
'height'] !== -1 ) {
132 # Height & width were both set
133 if ( $params[
'width'] * $srcHeight > $params[
'height'] * $srcWidth ) {
134 # Height is the relative smaller dimension, so scale width accordingly
135 $params[
'width'] =
self::fitBoxWidth( $srcWidth, $srcHeight, $params[
'height'] );
137 if ( $params[
'width'] == 0 ) {
138 # Very small image, so we need to rely on client side scaling :(
139 $params[
'width'] = 1;
142 $params[
'physicalWidth'] = $params[
'width'];
144 # Height was crap, unset it so that it will be calculated later
145 unset( $params[
'height'] );
149 if ( !isset( $params[
'physicalWidth'] ) ) {
150 # Passed all validations, so set the physicalWidth
152 $params[
'physicalWidth'] = $params[
'width'];
155 # Because thumbs are only referred to by width, the height always needs
156 # to be scaled by the width to keep the thumbnail sizes consistent,
157 # even if it was set inside the if block above
158 $params[
'physicalHeight'] = File::scaleHeight( $srcWidth, $srcHeight,
159 $params[
'physicalWidth'] );
161 # Set the height if it was not validated in the if block higher up
162 if ( !isset( $params[
'height'] ) || $params[
'height'] === -1 ) {
163 $params[
'height'] = $params[
'physicalHeight'];
166 if ( !$this->validateThumbParams( $params[
'physicalWidth'],
167 $params[
'physicalHeight'], $srcWidth, $srcHeight )
184 private function validateThumbParams( &$width, &$height, $srcWidth, $srcHeight ) {
185 $width = (int)$width;
188 wfDebug( __METHOD__ .
": Invalid destination width: $width" );
192 if ( $srcWidth <= 0 ) {
193 wfDebug( __METHOD__ .
": Invalid source width: $srcWidth" );
198 $height = File::scaleHeight( $srcWidth, $srcHeight, $width );
199 if ( $height == 0 ) {
200 # Force height to be at least 1 pixel
221 if ( $image->mustRender() || $params[
'width'] < $image->getWidth() ) {
227 AtEase::suppressWarnings();
228 $gis = getimagesize(
$path );
229 AtEase::restoreWarnings();
236 $gis = @getimagesize(
$path );
242 if ( isset( $gis[
'bits'] ) ) {
243 $info[
'bits'] = $gis[
'bits'];
262 return $image->getWidth() * $image->getHeight();
273 $nbytes = htmlspecialchars(
$wgLang->formatSize( $file->getSize() ) );
274 $widthheight =
wfMessage(
'widthheight' )
275 ->numParams( $file->getWidth(), $file->getHeight() )->escaped();
277 return "$widthheight ($nbytes)";
287 $pages = $file->pageCount();
288 if ( $pages ===
false || $pages <= 1 ) {
289 $msg =
wfMessage(
'file-info-size' )->numParams( $file->getWidth(),
290 $file->getHeight() )->sizeParams( $file->getSize() )->params(
291 '<span class="mime-type">' . $file->getMimeType() .
'</span>' )->parse();
293 $msg =
wfMessage(
'file-info-size-pages' )->numParams( $file->getWidth(),
294 $file->getHeight() )->sizeParams( $file->getSize() )->params(
295 '<span class="mime-type">' . $file->getMimeType() .
'</span>' )->numParams( $pages )->parse();
308 $pages = $file->pageCount();
311 ->numParams( $file->getWidth(), $file->getHeight(), $pages )->text();
314 ->numParams( $file->getWidth(), $file->getHeight() )->text();
322 $params = parent::sanitizeParamsForBucketing( $params );
326 unset( $params[
'height'] );
327 unset( $params[
'physicalHeight'] );
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
if(!defined( 'MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli' $wgLang
Media handler abstract base class for images.
canRender( $file)
True if the handled types can be transformed.to overridebool
getImageSize( $image, $path)
Get an image size array like that returned by getimagesize(), or false if it can't be determined.
sanitizeParamsForBucketing( $params)
Returns a normalised params array for which parameters have been cleaned up for bucketing purposes....
getImageArea( $image)
Function that returns the number of pixels to be thumbnailed.
getParamMap()
Get an associative array mapping magic word IDs to parameter names.Will be used by the parser to iden...
getSizeAndMetadata( $state, $path)
Get image size information and metadata array.
normaliseParams( $image, &$params)
Changes the parameter array as necessary, ready for transformation.Should be idempotent....
parseParamString( $str)
Parse a param string made with makeParamString back into an array.array|false Array of parameters or ...
makeParamString( $params)
Merge a parameter array into a string appropriate for inclusion in filenames.string
getLongDesc( $file)
Long description.Shown under image on image description page surrounded by ().to overridestring HTML
validateParam( $name, $value)
Validate a thumbnail parameter at parse time.Return true to accept the parameter, and false to reject...
getScriptedTransform( $image, $script, $params)
Get a MediaTransformOutput object representing an alternate of the transformed output which will call...
getScriptParams( $params)
getDimensionsString( $file)
Shown in file history box on image description page.to overridestring Dimensions (plain text)
getShortDesc( $file)
Short description.Shown on Special:Search results.to overridestring HTML
Media transform output for images.