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