(bug 48294) API: Fix chunk upload async mode
[mediawiki.git] / includes / media / PNG.php
blob98f138616d5238902cb774638d93f1df1db31514
1 <?php
2 /**
3 * Handler for PNG images.
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.
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.
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
20 * @file
21 * @ingroup Media
24 /**
25 * Handler for PNG images.
27 * @ingroup Media
29 class PNGHandler extends BitmapHandler {
31 const BROKEN_FILE = '0';
33 /**
34 * @param File $image
35 * @param string $filename
36 * @return string
38 function getMetadata( $image, $filename ) {
39 try {
40 $metadata = BitmapMetadataHandler::PNG( $filename );
41 } catch ( Exception $e ) {
42 // Broken file?
43 wfDebug( __METHOD__ . ': ' . $e->getMessage() . "\n" );
44 return self::BROKEN_FILE;
47 return serialize( $metadata );
50 /**
51 * @param $image File
52 * @return array|bool
54 function formatMetadata( $image ) {
55 $meta = $image->getMetadata();
57 if ( !$meta ) {
58 return false;
60 $meta = unserialize( $meta );
61 if ( !isset( $meta['metadata'] ) || count( $meta['metadata'] ) <= 1 ) {
62 return false;
65 if ( isset( $meta['metadata']['_MW_PNG_VERSION'] ) ) {
66 unset( $meta['metadata']['_MW_PNG_VERSION'] );
68 return $this->formatMetadataHelper( $meta['metadata'] );
71 /**
72 * @param $image File
73 * @return bool
75 function isAnimatedImage( $image ) {
76 $ser = $image->getMetadata();
77 if ( $ser ) {
78 $metadata = unserialize( $ser );
79 if ( $metadata['frameCount'] > 1 ) {
80 return true;
83 return false;
85 /**
86 * We do not support making APNG thumbnails, so always false
87 * @param $image File
88 * @return bool false
90 function canAnimateThumbnail( $image ) {
91 return false;
94 function getMetadataType( $image ) {
95 return 'parsed-png';
98 function isMetadataValid( $image, $metadata ) {
100 if ( $metadata === self::BROKEN_FILE ) {
101 // Do not repetitivly regenerate metadata on broken file.
102 return self::METADATA_GOOD;
105 wfSuppressWarnings();
106 $data = unserialize( $metadata );
107 wfRestoreWarnings();
109 if ( !$data || !is_array( $data ) ) {
110 wfDebug( __METHOD__ . " invalid png metadata\n" );
111 return self::METADATA_BAD;
114 if ( !isset( $data['metadata']['_MW_PNG_VERSION'] )
115 || $data['metadata']['_MW_PNG_VERSION'] != PNGMetadataExtractor::VERSION ) {
116 wfDebug( __METHOD__ . " old but compatible png metadata\n" );
117 return self::METADATA_COMPATIBLE;
119 return self::METADATA_GOOD;
123 * @param $image File
124 * @return string
126 function getLongDesc( $image ) {
127 global $wgLang;
128 $original = parent::getLongDesc( $image );
130 wfSuppressWarnings();
131 $metadata = unserialize( $image->getMetadata() );
132 wfRestoreWarnings();
134 if ( !$metadata || $metadata['frameCount'] <= 0 ) {
135 return $original;
138 $info = array();
139 $info[] = $original;
141 if ( $metadata['loopCount'] == 0 ) {
142 $info[] = wfMessage( 'file-info-png-looped' )->parse();
143 } elseif ( $metadata['loopCount'] > 1 ) {
144 $info[] = wfMessage( 'file-info-png-repeat' )->numParams( $metadata['loopCount'] )->parse();
147 if ( $metadata['frameCount'] > 0 ) {
148 $info[] = wfMessage( 'file-info-png-frames' )->numParams( $metadata['frameCount'] )->parse();
151 if ( $metadata['duration'] ) {
152 $info[] = $wgLang->formatTimePeriod( $metadata['duration'] );
155 return $wgLang->commaList( $info );