MediaWiki REL1_32
BmpHandler.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.
Handler for Microsoft's bitmap format; getimagesize() doesn't support these files.
getImageSize( $image, $filename)
Get width and height from the bmp header.
getThumbType( $text, $mime, $params=null)
Render files as PNG.
mustRender( $file)
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:925
returning false will NOT prevent logging $e
Definition hooks.txt:2226
if( $ext=='php'|| $ext=='php5') $mime
Definition router.php:59
$params
$header