Merge "Fixes to Special:FileDuplicateSearch form"
[lhc/web/wiklou.git] / includes / media / BMP.php
1 <?php
2 /**
3 * Handler for Microsoft's bitmap format.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Media
22 */
23
24 /**
25 * Handler for Microsoft's bitmap format; getimagesize() doesn't
26 * support these files
27 *
28 * @ingroup Media
29 */
30 class BmpHandler extends BitmapHandler {
31
32 /**
33 * @param $file
34 * @return bool
35 */
36 function mustRender( $file ) {
37 return true;
38 }
39
40 /**
41 * Render files as PNG
42 *
43 * @param $text
44 * @param $mime
45 * @param $params
46 * @return array
47 */
48 function getThumbType( $text, $mime, $params = null ) {
49 return array( 'png', 'image/png' );
50 }
51
52 /**
53 * Get width and height from the bmp header.
54 *
55 * @param $image
56 * @param $filename
57 * @return array
58 */
59 function getImageSize( $image, $filename ) {
60 $f = fopen( $filename, 'rb' );
61 if( !$f ) {
62 return false;
63 }
64 $header = fread( $f, 54 );
65 fclose( $f );
66
67 // Extract binary form of width and height from the header
68 $w = substr( $header, 18, 4 );
69 $h = substr( $header, 22, 4 );
70
71 // Convert the unsigned long 32 bits (little endian):
72 try {
73 $w = wfUnpack( 'V', $w, 4 );
74 $h = wfUnpack( 'V', $h, 4 );
75 } catch ( MWException $e ) {
76 return false;
77 }
78 return array( $w[1], $h[1] );
79 }
80 }