3 * Handler for GIF 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
25 * Handler for GIF images.
29 class GIFHandler
extends BitmapHandler
{
31 const BROKEN_FILE
= '0'; // value to store in img_metadata if error extracting metadata.
33 function getMetadata( $image, $filename ) {
35 $parsedGIFMetadata = BitmapMetadataHandler
::GIF( $filename );
36 } catch( Exception
$e ) {
38 wfDebug( __METHOD__
. ': ' . $e->getMessage() . "\n" );
39 return self
::BROKEN_FILE
;
42 return serialize( $parsedGIFMetadata );
49 function formatMetadata( $image ) {
50 $meta = $image->getMetadata();
55 $meta = unserialize( $meta );
56 if ( !isset( $meta['metadata'] ) ||
count( $meta['metadata'] ) <= 1 ) {
60 if ( isset( $meta['metadata']['_MW_GIF_VERSION'] ) ) {
61 unset( $meta['metadata']['_MW_GIF_VERSION'] );
63 return $this->formatMetadataHelper( $meta['metadata'] );
71 function getImageArea( $image ) {
72 $ser = $image->getMetadata();
74 $metadata = unserialize( $ser );
75 return $image->getWidth() * $image->getHeight() * $metadata['frameCount'];
77 return $image->getWidth() * $image->getHeight();
85 function isAnimatedImage( $image ) {
86 $ser = $image->getMetadata();
88 $metadata = unserialize( $ser );
89 if( $metadata['frameCount'] > 1 ) {
97 * We cannot animate thumbnails that are bigger than a particular size
101 function canAnimateThumbnail( $file ) {
102 global $wgMaxAnimatedGifArea;
103 $answer = $this->getImageArea( $file ) <= $wgMaxAnimatedGifArea;
107 function getMetadataType( $image ) {
111 function isMetadataValid( $image, $metadata ) {
112 if ( $metadata === self
::BROKEN_FILE
) {
113 // Do not repetitivly regenerate metadata on broken file.
114 return self
::METADATA_GOOD
;
117 wfSuppressWarnings();
118 $data = unserialize( $metadata );
121 if ( !$data ||
!is_array( $data ) ) {
122 wfDebug( __METHOD__
. ' invalid GIF metadata' );
123 return self
::METADATA_BAD
;
126 if ( !isset( $data['metadata']['_MW_GIF_VERSION'] )
127 ||
$data['metadata']['_MW_GIF_VERSION'] != GIFMetadataExtractor
::VERSION
) {
128 wfDebug( __METHOD__
. ' old but compatible GIF metadata' );
129 return self
::METADATA_COMPATIBLE
;
131 return self
::METADATA_GOOD
;
138 function getLongDesc( $image ) {
141 $original = parent
::getLongDesc( $image );
143 wfSuppressWarnings();
144 $metadata = unserialize( $image->getMetadata() );
147 if ( !$metadata ||
$metadata['frameCount'] <= 1 ) {
151 /* Preserve original image info string, but strip the last char ')' so we can add even more */
155 if ( $metadata['looped'] ) {
156 $info[] = wfMessage( 'file-info-gif-looped' )->parse();
159 if ( $metadata['frameCount'] > 1 ) {
160 $info[] = wfMessage( 'file-info-gif-frames' )->numParams( $metadata['frameCount'] )->parse();
163 if ( $metadata['duration'] ) {
164 $info[] = $wgLang->formatTimePeriod( $metadata['duration'] );
167 return $wgLang->commaList( $info );