parsedGIFMetadata ) ) { try { $image->parsedGIFMetadata = GIFMetadataExtractor::getMetadata( $filename ); } catch( Exception $e ) { // Broken file? wfDebug( __METHOD__ . ': ' . $e->getMessage() . "\n" ); return '0'; } } return serialize( $image->parsedGIFMetadata ); } function formatMetadata( $image ) { return false; } /** * @param $image File * @param $width * @param $height * @return */ function getImageArea( $image, $width, $height ) { $ser = $image->getMetadata(); if ($ser) { $metadata = unserialize($ser); return $width * $height * $metadata['frameCount']; } else { return $width * $height; } } /** * @param $image File * @return bool */ function isAnimatedImage( $image ) { $ser = $image->getMetadata(); if ($ser) { $metadata = unserialize($ser); if( $metadata['frameCount'] > 1 ) { return true; } } return false; } function getMetadataType( $image ) { return 'parsed-gif'; } function isMetadataValid( $image, $metadata ) { wfSuppressWarnings(); $data = unserialize( $metadata ); wfRestoreWarnings(); return (boolean) $data; } /** * @param $image File * @return string */ function getLongDesc( $image ) { global $wgLang; $original = parent::getLongDesc( $image ); wfSuppressWarnings(); $metadata = unserialize($image->getMetadata()); wfRestoreWarnings(); if (!$metadata || $metadata['frameCount'] <= 1) { return $original; } /* Preserve original image info string, but strip the last char ')' so we can add even more */ $info = array(); $info[] = $original; if ( $metadata['looped'] ) { $info[] = wfMsgExt( 'file-info-gif-looped', 'parseinline' ); } if ( $metadata['frameCount'] > 1 ) { $info[] = wfMsgExt( 'file-info-gif-frames', 'parseinline', $metadata['frameCount'] ); } if ( $metadata['duration'] ) { $info[] = $wgLang->formatTimePeriod( $metadata['duration'] ); } return $wgLang->commaList( $info ); } }