MediaWiki master
ImageHandler.php
Go to the documentation of this file.
1<?php
25use Wikimedia\AtEase\AtEase;
26
34abstract class ImageHandler extends MediaHandler {
41 public function canRender( $file ) {
42 return ( $file->getWidth() && $file->getHeight() );
43 }
44
50 public function getParamMap() {
51 return [ 'img_width' => 'width' ];
52 }
53
58 public function validateParam( $name, $value ) {
59 return in_array( $name, [ 'width', 'height' ] ) && $value > 0;
60 }
61
67 public function makeParamString( $params ) {
68 if ( isset( $params['physicalWidth'] ) ) {
69 $width = $params['physicalWidth'];
70 } elseif ( isset( $params['width'] ) ) {
71 $width = $params['width'];
72 } else {
73 throw new MediaTransformInvalidParametersException( 'No width specified to ' . __METHOD__ );
74 }
75
76 # Removed for ProofreadPage
77 # $width = intval( $width );
78 return "{$width}px";
79 }
80
85 public function parseParamString( $str ) {
86 $m = false;
87 if ( preg_match( '/^(\d+)px$/', $str, $m ) ) {
88 return [ 'width' => $m[1] ];
89 }
90 return false;
91 }
92
98 protected function getScriptParams( $params ) {
99 return [ 'width' => $params['width'] ];
100 }
101
110 public function normaliseParams( $image, &$params ) {
111 if ( !isset( $params['width'] ) ) {
112 return false;
113 }
114
115 if ( !isset( $params['page'] ) ) {
116 $params['page'] = 1;
117 } else {
118 $params['page'] = (int)$params['page'];
119 if ( $params['page'] > $image->pageCount() ) {
120 $params['page'] = $image->pageCount();
121 }
122
123 if ( $params['page'] < 1 ) {
124 $params['page'] = 1;
125 }
126 }
127
128 $srcWidth = $image->getWidth( $params['page'] );
129 $srcHeight = $image->getHeight( $params['page'] );
130
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'] );
136
137 if ( $params['width'] == 0 ) {
138 # Very small image, so we need to rely on client side scaling :(
139 $params['width'] = 1;
140 }
141
142 $params['physicalWidth'] = $params['width'];
143 } else {
144 # Height was crap, unset it so that it will be calculated later
145 unset( $params['height'] );
146 }
147 }
148
149 if ( !isset( $params['physicalWidth'] ) ) {
150 # Passed all validations, so set the physicalWidth
151 / @phan-suppress-next-line PhanTypePossiblyInvalidDimOffset False positive, checked above
152 $params['physicalWidth'] = $params['width'];
153 }
154
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'] );
160
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'];
164 }
165
166 if ( !$this->validateThumbParams( $params['physicalWidth'],
167 $params['physicalHeight'], $srcWidth, $srcHeight )
168 ) {
169 return false;
170 }
171
172 return true;
173 }
174
184 private function validateThumbParams( &$width, &$height, $srcWidth, $srcHeight ) {
185 $width = (int)$width;
186
187 if ( $width <= 0 ) {
188 wfDebug( __METHOD__ . ": Invalid destination width: $width" );
189
190 return false;
191 }
192 if ( $srcWidth <= 0 ) {
193 wfDebug( __METHOD__ . ": Invalid source width: $srcWidth" );
194
195 return false;
196 }
197
198 $height = File::scaleHeight( $srcWidth, $srcHeight, $width );
199 if ( $height == 0 ) {
200 # Force height to be at least 1 pixel
201 $height = 1;
202 }
203
204 return true;
205 }
206
215 public function getScriptedTransform( $image, $script, $params ) {
216 if ( !$this->normaliseParams( $image, $params ) ) {
217 return false;
218 }
219 $url = wfAppendQuery( $script, $this->getScriptParams( $params ) );
220
221 if ( $image->mustRender() || $params['width'] < $image->getWidth() ) {
222 return new ThumbnailImage( $image, $url, false, $params );
223 }
224 }
225
226 public function getImageSize( $image, $path ) {
227 AtEase::suppressWarnings();
228 $gis = getimagesize( $path );
229 AtEase::restoreWarnings();
230
231 return $gis;
232 }
233
234 public function getSizeAndMetadata( $state, $path ) {
235 / phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged
236 $gis = @getimagesize( $path );
237 if ( $gis ) {
238 $info = [
239 'width' => $gis[0],
240 'height' => $gis[1],
241 ];
242 if ( isset( $gis['bits'] ) ) {
243 $info['bits'] = $gis['bits'];
244 }
245 } else {
246 $info = [];
247 }
248 return $info;
249 }
250
261 public function getImageArea( $image ) {
262 return $image->getWidth() * $image->getHeight();
263 }
264
271 public function getShortDesc( $file ) {
272 global $wgLang;
273 $nbytes = htmlspecialchars( $wgLang->formatSize( $file->getSize() ) );
274 $widthheight = wfMessage( 'widthheight' )
275 ->numParams( $file->getWidth(), $file->getHeight() )->escaped();
276
277 return "$widthheight ($nbytes)";
278 }
279
286 public function getLongDesc( $file ) {
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();
292 } else {
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();
296 }
297
298 return $msg;
299 }
300
307 public function getDimensionsString( $file ) {
308 $pages = $file->pageCount();
309 if ( $pages > 1 ) {
310 return wfMessage( 'widthheightpage' )
311 ->numParams( $file->getWidth(), $file->getHeight(), $pages )->text();
312 }
313 return wfMessage( 'widthheight' )
314 ->numParams( $file->getWidth(), $file->getHeight() )->text();
315 }
316
321 public function sanitizeParamsForBucketing( $params ) {
322 $params = parent::sanitizeParamsForBucketing( $params );
323
324 / We unset the height parameters in order to let normaliseParams recalculate them
325 / Otherwise there might be a height discrepancy
326 unset( $params['height'] );
327 unset( $params['physicalHeight'] );
328
329 return $params;
330 }
331}
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
Definition Setup.php:562
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
Base media handler class.
static fitBoxWidth( $boxWidth, $boxHeight, $maxHeight)
Calculate the largest thumbnail width for a given original file size such that the thumbnail's height...
MediaWiki exception thrown by some methods when the transform parameter array is invalid.
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition File.php:93
Media transform output for images.

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant