MediaWiki  REL1_22
ImageHandler Class Reference

Media handler abstract base class for images. More...

Inheritance diagram for ImageHandler:
Collaboration diagram for ImageHandler:

List of all members.

Public Member Functions

 canRender ($file)
 getDimensionsString ($file)
 getImageArea ($image)
 Function that returns the number of pixels to be thumbnailed.
 getImageSize ($image, $path)
 Get an image size array like that returned by getimagesize(), or false if it can't be determined.
 getLongDesc ($file)
 getParamMap ()
 Get an associative array mapping magic word IDs to parameter names.
 getScriptedTransform ($image, $script, $params)
 getScriptParams ($params)
 getShortDesc ($file)
 makeParamString ($params)
 Merge a parameter array into a string appropriate for inclusion in filenames.
 normaliseParams ($image, &$params)
 parseParamString ($str)
 Parse a param string made with makeParamString back into an array.
 validateParam ($name, $value)
 Validate a thumbnail parameter at parse time.
 validateThumbParams (&$width, &$height, $srcWidth, $srcHeight, $mimeType)
 Validate thumbnail parameters and fill in the correct height.

Detailed Description

Media handler abstract base class for images.

Definition at line 29 of file ImageHandler.php.


Member Function Documentation

Parameters:
$fileFile
Returns:
bool

Reimplemented from MediaHandler.

Reimplemented in TiffHandler.

Definition at line 35 of file ImageHandler.php.

References $file.

Parameters:
$fileFile
Returns:
string

Reimplemented from MediaHandler.

Definition at line 254 of file ImageHandler.php.

References $file, text, and wfMessage().

Function that returns the number of pixels to be thumbnailed.

Intended for animated GIFs to multiply by the number of frames.

If the file doesn't support a notion of "area" return 0.

Parameters:
File$image
Returns:
int

Reimplemented in GIFHandler.

Definition at line 213 of file ImageHandler.php.

Referenced by BitmapHandler\transformImageMagick(), and BitmapHandler\transformImageMagickExt().

ImageHandler::getImageSize ( image,
path 
)

Get an image size array like that returned by getimagesize(), or false if it can't be determined.

Parameters:
$imageFile: the image object, or false if there isn't one
string$paththe filename
Returns:
Array Follow the format of PHP getimagesize() internal function. See http://www.php.net/getimagesize

Reimplemented from MediaHandler.

Reimplemented in DjVuHandler, ExifBitmapHandler, XCFHandler, and BmpHandler.

Definition at line 198 of file ImageHandler.php.

References $path, wfRestoreWarnings(), and wfSuppressWarnings().

Parameters:
$fileFile
Returns:
string

Reimplemented from MediaHandler.

Reimplemented in SvgHandler, GIFHandler, and PNGHandler.

Definition at line 234 of file ImageHandler.php.

References $file, $size, $wgLang, global, params, and wfMessage().

Get an associative array mapping magic word IDs to parameter names.

Will be used by the parser to identify parameters.

Reimplemented from MediaHandler.

Reimplemented in SvgHandler, and DjVuHandler.

Definition at line 39 of file ImageHandler.php.

References array().

ImageHandler::getScriptedTransform ( image,
script,
params 
)
Parameters:
$imageFile
$script
$params
Returns:
bool|ThumbnailImage

Reimplemented from MediaHandler.

Definition at line 187 of file ImageHandler.php.

References $params, getScriptParams(), normaliseParams(), and wfAppendQuery().

Reimplemented in SvgHandler, and DjVuHandler.

Definition at line 77 of file ImageHandler.php.

References $params, and array().

Referenced by getScriptedTransform().

Parameters:
$fileFile
Returns:
string

Reimplemented from MediaHandler.

Definition at line 222 of file ImageHandler.php.

References $file, $wgLang, global, and wfMessage().

Merge a parameter array into a string appropriate for inclusion in filenames.

Parameters:
$paramsarray Array of parameters that have been through normaliseParams.
Returns:
String

Reimplemented from MediaHandler.

Reimplemented in SvgHandler, and DjVuHandler.

Definition at line 55 of file ImageHandler.php.

References $params.

ImageHandler::normaliseParams ( image,
&$  params 
)
Parameters:
$imageFile
$params
Returns:
bool

Reimplemented from MediaHandler.

Reimplemented in SvgHandler, BitmapHandler_ClientOnly, and BitmapHandler.

Definition at line 86 of file ImageHandler.php.

References $params, MediaHandler\fitBoxWidth(), File\scaleHeight(), and validateThumbParams().

Referenced by DjVuHandler\doTransform(), and getScriptedTransform().

Parse a param string made with makeParamString back into an array.

Parameters:
$strstring The parameter string without file name (e.g. 122px)
Returns:
Array|Boolean Array of parameters or false on failure.

Reimplemented from MediaHandler.

Reimplemented in SvgHandler, and DjVuHandler.

Definition at line 68 of file ImageHandler.php.

References array().

ImageHandler::validateParam ( name,
value 
)

Validate a thumbnail parameter at parse time.

Return true to accept the parameter, and false to reject it. If you return false, the parser will do something quiet and forgiving.

Parameters:
$name
$value

Reimplemented from MediaHandler.

Reimplemented in SvgHandler, and DjVuHandler.

Definition at line 43 of file ImageHandler.php.

References $name, $value, and array().

ImageHandler::validateThumbParams ( &$  width,
&$  height,
srcWidth,
srcHeight,
mimeType 
)

Validate thumbnail parameters and fill in the correct height.

Parameters:
$widthInteger: specified width (input/output)
$heightInteger: height (output only)
$srcWidthInteger: width of the source image
$srcHeightInteger: height of the source image
$mimeType
Returns:
bool False to indicate that an error should be returned to the user.

Definition at line 160 of file ImageHandler.php.

References File\scaleHeight(), and wfDebug().

Referenced by normaliseParams().


The documentation for this class was generated from the following file: