44 if ( !$dstPath && $checkDstPath ) {
45 # No output path available, client side scaling only
53 } elseif ( function_exists(
'imagecreatetruecolor' ) ) {
55 } elseif ( class_exists(
'Imagick' ) ) {
67 return "interlaced-{$res}";
74 $remainder = preg_replace(
'/^interlaced-/',
'', $str );
75 $params = parent::parseParamString( $remainder );
79 $params[
'interlace'] = $str !== $remainder;
84 if (
$name ===
'interlace' ) {
101 $mimeType =
$image->getMimeType();
102 $interlace = isset(
$params[
'interlace'] ) &&
$params[
'interlace']
105 $params[
'interlace'] = $interlace;
116 switch ( $pixelFormat ) {
118 return [
'1x1',
'1x1',
'1x1' ];
120 return [
'2x1',
'1x1',
'1x1' ];
122 return [
'2x2',
'1x1',
'1x1' ];
124 throw new MWException(
'Invalid pixel format for JPEG output' );
146 $animation_post = [];
150 if (
$params[
'mimeType'] ==
'image/jpeg' ) {
154 $animation_post = [
'-interlace',
'JPEG' ];
156 # Sharpening, see T8193
165 $decoderHint = [
'-define',
"jpeg:size={$params['physicalDimensions']}" ];
169 $subsampling = [
'-sampling-factor', implode(
',', $factors ) ];
171 } elseif (
$params[
'mimeType'] ==
'image/png' ) {
172 $quality = [
'-quality',
'95' ];
174 $animation_post = [
'-interlace',
'PNG' ];
176 } elseif (
$params[
'mimeType'] ==
'image/webp' ) {
177 $quality = [
'-quality',
'95' ];
178 } elseif (
$params[
'mimeType'] ==
'image/gif' ) {
185 $animation_pre = [
'-coalesce' ];
189 $animation_post = [
'-fuzz',
'5%',
'-layers',
'optimizeTransparency' ];
194 $animation_post[] =
'-interlace';
195 $animation_post[] =
'GIF';
197 } elseif (
$params[
'mimeType'] ==
'image/x-xcf' ) {
205 '-background',
'transparent',
207 '-background',
'white',
209 Wikimedia\suppressWarnings();
211 Wikimedia\restoreWarnings();
213 && isset( $xcfMeta[
'colorType'] )
214 && $xcfMeta[
'colorType'] ===
'greyscale-alpha'
219 $channelOnly = [
'-channel',
'R',
'-separate' ];
220 $animation_pre = array_merge( $animation_pre, $channelOnly );
225 $env = [
'OMP_NUM_THREADS' => 1 ];
233 $cmd = Shell::escape( ...array_merge(
238 [
'-background',
'white' ],
245 [
'-thumbnail',
"{$width}x{$height}!" ],
251 [
'+set',
'Thumb::URI' ],
254 [
'-rotate',
"-$rotation" ],
259 wfDebug( __METHOD__ .
": running ImageMagick: $cmd\n" );
263 if ( $retval !== 0 ) {
269 return false; # No
error
286 $im->readImage(
$params[
'srcPath'] );
288 if (
$params[
'mimeType'] ==
'image/jpeg' ) {
296 $im->sharpenImage( $radius, $sigma );
301 $im->setInterlaceScheme( Imagick::INTERLACE_JPEG );
305 $im->setSamplingFactors( $factors );
307 } elseif (
$params[
'mimeType'] ==
'image/png' ) {
308 $im->setCompressionQuality( 95 );
310 $im->setInterlaceScheme( Imagick::INTERLACE_PNG );
312 } elseif (
$params[
'mimeType'] ==
'image/gif' ) {
316 $im->setImageScene( 0 );
319 $im = $im->coalesceImages();
322 $v = Imagick::getVersion();
323 preg_match(
'/ImageMagick ([0-9]+\.[0-9]+\.[0-9]+)/', $v[
'versionString'], $v );
325 if (
$params[
'interlace'] && version_compare( $v[1],
'6.3.4' ) >= 0 ) {
326 $im->setInterlaceScheme( Imagick::INTERLACE_GIF );
333 $im->setImageBackgroundColor(
new ImagickPixel(
'white' ) );
336 foreach ( $im
as $i => $frame ) {
337 if ( !$frame->thumbnailImage( $width, $height,
false ) ) {
341 $im->setImageDepth( 8 );
343 if ( $rotation && !$im->rotateImage(
new ImagickPixel(
'white' ), 360 - $rotation ) ) {
348 wfDebug( __METHOD__ .
": Writing animated thumbnail\n" );
356 "Unable to write thumbnail to {$params['dstPath']}" );
358 }
catch ( ImagickException
$e ) {
374 # Use a custom convert command
377 # Variables: %s %d %w %h
378 $src = Shell::escape(
$params[
'srcPath'] );
379 $dst = Shell::escape(
$params[
'dstPath'] );
381 $cmd = str_replace(
'%s', $src, str_replace(
'%d', $dst, $cmd ) ); # Filenames
382 $cmd = str_replace(
'%h', Shell::escape(
$params[
'physicalHeight'] ),
383 str_replace(
'%w', Shell::escape(
$params[
'physicalWidth'] ), $cmd ) ); # Size
384 wfDebug( __METHOD__ .
": Running custom convert command $cmd\n" );
388 if ( $retval !== 0 ) {
394 return false; # No
error
406 # Use PHP's builtin GD library functions.
407 # First find out what kind of file this is, and select the correct
408 # input routine for this.
411 'image/gif' => [
'imagecreatefromgif',
'palette',
false,
'imagegif' ],
412 'image/jpeg' => [
'imagecreatefromjpeg',
'truecolor',
true,
413 [ __CLASS__,
'imageJpegWrapper' ] ],
414 'image/png' => [
'imagecreatefrompng',
'bits',
false,
'imagepng' ],
415 'image/vnd.wap.wbmp' => [
'imagecreatefromwbmp',
'palette',
false,
'imagewbmp' ],
416 'image/xbm' => [
'imagecreatefromxbm',
'palette',
false,
'imagexbm' ],
419 if ( !isset( $typemap[
$params[
'mimeType']] ) ) {
420 $err =
'Image type not supported';
422 $errMsg =
wfMessage(
'thumbnail_image-type' )->text();
426 list( $loader, $colorStyle, $useQuality, $saveType ) = $typemap[
$params[
'mimeType']];
428 if ( !function_exists( $loader ) ) {
429 $err =
"Incomplete GD library configuration: missing function $loader";
431 $errMsg =
wfMessage(
'thumbnail_gd-library', $loader )->text();
436 if ( !file_exists(
$params[
'srcPath'] ) ) {
437 $err =
"File seems to be missing: {$params['srcPath']}";
439 $errMsg =
wfMessage(
'thumbnail_image-missing',
$params[
'srcPath'] )->text();
444 if ( filesize(
$params[
'srcPath'] ) === 0 ) {
445 $err =
"Image file size seems to be zero.";
447 $errMsg =
wfMessage(
'thumbnail_image-size-zero',
$params[
'srcPath'] )->text();
452 $src_image = $loader(
$params[
'srcPath'] );
454 $rotation = function_exists(
'imagerotate' ) && !isset(
$params[
'disableRotation'] ) ?
458 $dst_image = imagecreatetruecolor( $width, $height );
462 $background = imagecolorallocate( $dst_image, 0, 0, 0 );
463 imagecolortransparent( $dst_image, $background );
464 imagealphablending( $dst_image,
false );
466 if ( $colorStyle ==
'palette' ) {
469 imagecopyresized( $dst_image, $src_image,
472 imagesx( $src_image ), imagesy( $src_image ) );
474 imagecopyresampled( $dst_image, $src_image,
477 imagesx( $src_image ), imagesy( $src_image ) );
480 if ( $rotation % 360 != 0 && $rotation % 90 == 0 ) {
481 $rot_image = imagerotate( $dst_image, $rotation, 0 );
482 imagedestroy( $dst_image );
483 $dst_image = $rot_image;
486 imagesavealpha( $dst_image,
true );
488 $funcParams = [ $dst_image,
$params[
'dstPath'] ];
489 if ( $useQuality && isset(
$params[
'quality'] ) ) {
490 $funcParams[] =
$params[
'quality'];
492 $saveType( ...$funcParams );
494 imagedestroy( $dst_image );
495 imagedestroy( $src_image );
497 return false; # No
error
511 if ( $quality ===
null ) {
515 imageinterlace( $dst_image );
516 imagejpeg( $dst_image, $thumbPath, $quality );
528 # ImageMagick supports autorotation
531 # Imagick::rotateImage
534 # GD's imagerotate function is used to rotate images, but not
535 # all precompiled PHP versions have that function
536 return function_exists(
'imagerotate' );
538 # Other scalers don't support rotation
576 " -rotate " . Shell::escape(
"-$rotation" ) .
" " .
578 wfDebug( __METHOD__ .
": running ImageMagick: $cmd\n" );
581 if ( $retval !== 0 ) {
590 $im->readImage(
$params[
'srcPath'] );
591 if ( !$im->rotateImage(
new ImagickPixel(
'white' ), 360 - $rotation ) ) {
593 "Error rotating $rotation degrees" );
598 "Unable to write image to {$params['dstPath']}" );
604 "$scaler rotation not implemented" );
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
unserialize( $serialized)
$wgCustomConvertCommand
Use another resizing converter, e.g.
$wgMaxInterlacingAreas
Array of max pixel areas for interlacing per MIME type.
$wgUseImageResize
Whether to enable server-side image thumbnailing.
$wgJpegQuality
When scaling a JPEG thumbnail, this is the quality we request from the backend.
$wgEnableAutoRotation
If set to true, images that contain certain the exif orientation tag will be rotated accordingly.
$wgImageMagickTempDir
Temporary directory used for ImageMagick.
$wgSharpenReductionThreshold
Reduction in linear dimensions below which sharpening will be enabled.
$wgJpegPixelFormat
At default setting of 'yuv420', JPEG thumbnails will use 4:2:0 chroma subsampling to reduce file size...
$wgSharpenParameter
Sharpening parameter to ImageMagick.
$wgMaxAnimatedGifArea
Force thumbnailing of animated GIFs above this size to a single frame instead of an animated thumbnai...
$wgUseImageMagick
Resizing can be done using PHP's internal image libraries or using ImageMagick or another third-party...
$wgImageMagickConvertCommand
The convert command shipped with ImageMagick.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfShellExecWithStderr( $cmd, &$retval=null, $environ=[], $limits=[])
Execute a shell command, returning both stdout and stderr.
Generic handler for bitmap images.
canRotate()
Returns whether the current scaler supports rotation (im and gd do)
static imageJpegWrapper( $dst_image, $thumbPath, $quality=null)
Callback for transformGd when transforming jpeg images.
transformImageMagick( $image, $params)
Transform an image using ImageMagick.
getScalerType( $dstPath, $checkDstPath=true)
Returns which scaler type should be used.
imageMagickSubsampling( $pixelFormat)
Get ImageMagick subsampling factors for the target JPEG pixel format.
transformCustom( $image, $params)
Transform an image using a custom command.
makeParamString( $params)
Merge a parameter array into a string appropriate for inclusion in filenames.
transformGd( $image, $params)
Transform an image using the built in GD library.
parseParamString( $str)
Parse a param string made with makeParamString back into an array.
normaliseParams( $image, &$params)
transformImageMagickExt( $image, $params)
Transform an image using the Imagick PHP extension.
validateParam( $name, $value)
Validate a thumbnail parameter at parse time.
getImageArea( $image)
Function that returns the number of pixels to be thumbnailed.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check $image
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults error
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImgAuthModifyHeaders':Executed just before a file is streamed to a user via img_auth.php, allowing headers to be modified beforehand. $title:LinkTarget object & $headers:HTTP headers(name=> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
Allows to change the fields on the form that will be generated $name
returning false will NOT prevent logging $e
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file