BmpHandler.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. * Handler for Microsoft's bitmap format; getimagesize() doesn't
  25. * support these files
  26. *
  27. * @ingroup Media
  28. */
  29. class BmpHandler extends BitmapHandler {
  30. /**
  31. * @param File $file
  32. * @return bool
  33. */
  34. public function mustRender( $file ) {
  35. return true;
  36. }
  37. /**
  38. * Render files as PNG
  39. *
  40. * @param string $ext
  41. * @param string $mime
  42. * @param array|null $params
  43. * @return array
  44. */
  45. public function getThumbType( $ext, $mime, $params = null ) {
  46. return [ 'png', 'image/png' ];
  47. }
  48. /**
  49. * Get width and height from the bmp header.
  50. *
  51. * @param File|FSFile $image
  52. * @param string $filename
  53. * @return array|false
  54. */
  55. function getImageSize( $image, $filename ) {
  56. $f = fopen( $filename, 'rb' );
  57. if ( !$f ) {
  58. return false;
  59. }
  60. $header = fread( $f, 54 );
  61. fclose( $f );
  62. // Extract binary form of width and height from the header
  63. $w = substr( $header, 18, 4 );
  64. $h = substr( $header, 22, 4 );
  65. // Convert the unsigned long 32 bits (little endian):
  66. try {
  67. $w = wfUnpack( 'V', $w, 4 );
  68. $h = wfUnpack( 'V', $h, 4 );
  69. } catch ( Exception $e ) {
  70. return false;
  71. }
  72. return [ $w[1], $h[1] ];
  73. }
  74. }