MediaWiki REL1_31
BMP.php
Go to the documentation of this file.
1<?php
35 public function mustRender( $file ) {
36 return true;
37 }
38
47 function getThumbType( $text, $mime, $params = null ) {
48 return [ 'png', 'image/png' ];
49 }
50
58 function getImageSize( $image, $filename ) {
59 $f = fopen( $filename, 'rb' );
60 if ( !$f ) {
61 return false;
62 }
63 $header = fread( $f, 54 );
64 fclose( $f );
65
66 // Extract binary form of width and height from the header
67 $w = substr( $header, 18, 4 );
68 $h = substr( $header, 22, 4 );
69
70 // Convert the unsigned long 32 bits (little endian):
71 try {
72 $w = wfUnpack( 'V', $w, 4 );
73 $h = wfUnpack( 'V', $h, 4 );
74 } catch ( Exception $e ) {
75 return false;
76 }
77
78 return [ $w[1], $h[1] ];
79 }
80}
wfUnpack( $format, $data, $length=false)
Wrapper around php's unpack.
Generic handler for bitmap images.
Definition Bitmap.php:29
Handler for Microsoft's bitmap format; getimagesize() doesn't support these files.
Definition BMP.php:30
getImageSize( $image, $filename)
Get width and height from the bmp header.
Definition BMP.php:58
getThumbType( $text, $mime, $params=null)
Render files as PNG.
Definition BMP.php:47
mustRender( $file)
Definition BMP.php:35
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub 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
Definition hooks.txt:895
returning false will NOT prevent logging $e
Definition hooks.txt:2176
if( $ext=='php'|| $ext=='php5') $mime
Definition router.php:59
$params
$header