Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 2 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
Jpeg2000Handler | |
0.00% |
0 / 2 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 1 |
mustRender | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getThumbType | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | /** |
3 | * Handler for JPEG2000 images. |
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 JPEG2000 images. |
26 | * image/jp2 and image/jpx (jpeg2000 part 2) |
27 | * |
28 | * @ingroup Media |
29 | */ |
30 | class Jpeg2000Handler extends BitmapHandler { |
31 | |
32 | /** |
33 | * Not all browsers support jpeg2000 |
34 | * |
35 | * @param File $file |
36 | * @return bool |
37 | */ |
38 | public function mustRender( $file ) { |
39 | return true; |
40 | } |
41 | |
42 | /** |
43 | * Render files as PNG |
44 | * |
45 | * @param string $ext |
46 | * @param string $mime |
47 | * @param array|null $params |
48 | * @return array |
49 | */ |
50 | public function getThumbType( $ext, $mime, $params = null ) { |
51 | return [ 'png', 'image/png' ]; |
52 | } |
53 | |
54 | } |