Index: trunk/phase3/includes/media/BMP.php |
— | — | @@ -1,8 +1,8 @@ |
2 | 2 | <?php |
| 3 | + |
3 | 4 | /** |
4 | | - * Handler for Microsoft bitmap format (bmp). It inherits most of the methods |
5 | | - * from ImageHandler, some of them had to be overriden cause gd does not |
6 | | - * support this format. |
| 5 | + * Handler for Microsoft's bitmap format; getimagesize() doesn't |
| 6 | + * support these files |
7 | 7 | * |
8 | 8 | * @addtogroup Media |
9 | 9 | */ |
— | — | @@ -26,6 +26,4 @@ |
27 | 27 | $h = unpack( 'V' , $h ); |
28 | 28 | return array( $w[1], $h[1] ); |
29 | 29 | } |
30 | | -} |
31 | | - |
32 | | - |
| 30 | +} |
\ No newline at end of file |