34 const MINIMUM_CHUNK_HEADER_LENGTH = 18;
38 const _MW_WEBP_VERSION = 1;
48 if ( !$parsedWebPData ) {
52 $parsedWebPData[
'metadata'][
'_MW_WEBP_VERSION'] = self::_MW_WEBP_VERSION;
61 if ( $metadata === self::BROKEN_FILE ) {
66 Wikimedia\suppressWarnings();
68 Wikimedia\restoreWarnings();
70 if ( !$data || !is_array( $data ) ) {
71 wfDebug( __METHOD__ .
" invalid WebP metadata\n" );
76 if ( !isset( $data[
'metadata'][
'_MW_WEBP_VERSION'] )
77 || $data[
'metadata'][
'_MW_WEBP_VERSION'] != self::_MW_WEBP_VERSION
79 wfDebug( __METHOD__ .
" old but compatible WebP metadata\n" );
95 wfDebugLog(
'WebP', __METHOD__ .
": Extracting metadata from $filename\n" );
98 if ( $info ===
false ) {
99 wfDebugLog(
'WebP', __METHOD__ .
": Not a valid RIFF file\n" );
103 if ( $info[
'fourCC'] !=
'WEBP' ) {
104 wfDebugLog(
'WebP', __METHOD__ .
': FourCC was not WEBP: ' .
105 bin2hex( $info[
'fourCC'] ) .
" \n" );
111 wfDebugLog(
'WebP', __METHOD__ .
": No VP8 chunks found\n" );
128 foreach ( $chunks as $chunk ) {
129 if ( !in_array( $chunk[
'fourCC'], [
'VP8 ',
'VP8L',
'VP8X' ] ) ) {
134 $chunkHeader = file_get_contents( $filename,
false,
null,
135 $chunk[
'start'], self::MINIMUM_CHUNK_HEADER_LENGTH );
136 wfDebugLog(
'WebP', __METHOD__ .
": {$chunk['fourCC']}\n" );
138 switch ( $chunk[
'fourCC'] ) {
140 return array_merge( $vp8Info,
141 self::decodeLossyChunkHeader( $chunkHeader ) );
143 return array_merge( $vp8Info,
144 self::decodeLosslessChunkHeader( $chunkHeader ) );
146 $vp8Info = array_merge( $vp8Info,
147 self::decodeExtendedChunkHeader( $chunkHeader ) );
165 $syncCode = substr(
$header, 11, 3 );
166 if ( $syncCode !=
"\x9D\x01\x2A" ) {
167 wfDebugLog(
'WebP', __METHOD__ .
': Invalid sync code: ' .
168 bin2hex( $syncCode ) .
"\n" );
172 $imageSize = unpack(
'v2', substr(
$header, 14, 4 ) );
175 'compression' =>
'lossy',
176 'width' => $imageSize[1] & 0x3FFF,
177 'height' => $imageSize[2] & 0x3FFF
191 wfDebugLog(
'WebP', __METHOD__ .
': Invalid signature: ' .
192 bin2hex(
$header{8} ) .
"\n" );
197 $imageSize = unpack(
'C4', substr(
$header, 9, 4 ) );
199 'compression' =>
'lossless',
200 'width' => ( $imageSize[1] | ( ( $imageSize[2] & 0x3F ) << 8 ) ) + 1,
201 'height' => ( ( ( $imageSize[2] & 0xC0 ) >> 6 ) |
202 ( $imageSize[3] << 2 ) | ( ( $imageSize[4] & 0x03 ) << 10 ) ) + 1
215 $flags = unpack(
'c', substr(
$header, 8, 1 ) );
218 $width = unpack(
'V', substr(
$header, 12, 3 ) .
"\x00" );
219 $height = unpack(
'V', substr(
$header, 15, 3 ) .
"\x00" );
222 'compression' =>
'unknown',
225 'width' => ( $width[1] & 0xFFFFFF ) + 1,
226 'height' => ( $height[1] & 0xFFFFFF ) + 1
231 if ( $file ===
null ) {
234 if ( $metadata ===
false && $file instanceof
File ) {
235 $metadata = $file->getMetadata();
238 Wikimedia\suppressWarnings();
240 Wikimedia\restoreWarnings();
242 if ( $metadata ==
false ) {
245 return [ $metadata[
'width'], $metadata[
'height'] ];
261 if ( self::isAnimatedImage( $file ) ) {
272 $ser =
$image->getMetadata();
275 if ( isset( $metadata[
'animated'] ) && $metadata[
'animated'] ===
true ) {
296 return [
'png',
'image/png' ];
unserialize( $serialized)
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
Generic handler for bitmap images.
Implements some public methods and some protected utility functions which are required by multiple ch...
Handler for Google's WebP format https://developers.google.com/speed/webp/
isMetadataValid( $image, $metadata)
Check if the metadata string is valid for this handler.
canAnimateThumbnail( $file)
If the material is animated, we can animate the thumbnail.
static extractMetadataFromChunks( $chunks, $filename)
Extracts the image size and WebP type from a file based on the chunk list.
getMetadata( $image, $filename)
Get handler-specific metadata which will be saved in the img_metadata field.
getScalerType( $dstPath, $checkDstPath=true)
Must use "im" for XCF.
static decodeLossyChunkHeader( $header)
Decodes a lossy chunk header.
getImageSize( $file, $path, $metadata=false)
getThumbType( $ext, $mime, $params=null)
Render files as PNG.
static decodeLosslessChunkHeader( $header)
Decodes a lossless chunk header.
getMetadataType( $image)
Get a string describing the type of metadata, for display purposes.
static extractMetadata( $filename)
Extracts the image size and WebP type from a file.
static decodeExtendedChunkHeader( $header)
Decodes an extended chunk header.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check $image
if( $ext=='php'|| $ext=='php5') $mime
if(!is_readable( $file)) $ext