MediaWiki REL1_35
GIFMetadataExtractor.php
Go to the documentation of this file.
1<?php
36 private static $gifFrameSep;
37
39 private static $gifExtensionSep;
40
42 private static $gifTerm;
43
44 public const VERSION = 1;
45
46 // Each sub-block is less than or equal to 255 bytes.
47 // Most of the time its 255 bytes, except for in XMP
48 // blocks, where it's usually between 32-127 bytes each.
49 private const MAX_SUBBLOCKS = 262144; // 5mb divided by 20.
50
56 public static function getMetadata( $filename ) {
57 self::$gifFrameSep = pack( "C", ord( "," ) ); // 2C
58 self::$gifExtensionSep = pack( "C", ord( "!" ) ); // 21
59 self::$gifTerm = pack( "C", ord( ";" ) ); // 3B
60
61 $frameCount = 0;
62 $duration = 0.0;
63 $isLooped = false;
64 $xmp = "";
65 $comment = [];
66
67 if ( !$filename ) {
68 throw new Exception( "No file name specified" );
69 } elseif ( !file_exists( $filename ) || is_dir( $filename ) ) {
70 throw new Exception( "File $filename does not exist" );
71 }
72
73 $fh = fopen( $filename, 'rb' );
74
75 if ( !$fh ) {
76 throw new Exception( "Unable to open file $filename" );
77 }
78
79 // Check for the GIF header
80 $buf = fread( $fh, 6 );
81 if ( !( $buf == 'GIF87a' || $buf == 'GIF89a' ) ) {
82 throw new Exception( "Not a valid GIF file; header: $buf" );
83 }
84
85 // Read width and height.
86 $buf = fread( $fh, 2 );
87 $width = unpack( 'v', $buf )[1];
88 $buf = fread( $fh, 2 );
89 $height = unpack( 'v', $buf )[1];
90
91 // Read BPP
92 $buf = fread( $fh, 1 );
93 $bpp = self::decodeBPP( $buf );
94
95 // Skip over background and aspect ratio
96 fread( $fh, 2 );
97
98 // Skip over the GCT
99 self::readGCT( $fh, $bpp );
100
101 while ( !feof( $fh ) ) {
102 $buf = fread( $fh, 1 );
103
104 if ( $buf == self::$gifFrameSep ) {
105 // Found a frame
106 $frameCount++;
107
108 # # Skip bounding box
109 fread( $fh, 8 );
110
111 # # Read BPP
112 $buf = fread( $fh, 1 );
113 $bpp = self::decodeBPP( $buf );
114
115 # # Read GCT
116 self::readGCT( $fh, $bpp );
117 fread( $fh, 1 );
118 self::skipBlock( $fh );
119 } elseif ( $buf == self::$gifExtensionSep ) {
120 $buf = fread( $fh, 1 );
121 if ( strlen( $buf ) < 1 ) {
122 throw new Exception( "Ran out of input" );
123 }
124 $extension_code = unpack( 'C', $buf )[1];
125
126 if ( $extension_code == 0xF9 ) {
127 // Graphics Control Extension.
128 fread( $fh, 1 ); // Block size
129
130 // @phan-suppress-next-line PhanPluginDuplicateAdjacentStatement
131 fread( $fh, 1 ); // Transparency, disposal method, user input
132
133 $buf = fread( $fh, 2 ); // Delay, in hundredths of seconds.
134 if ( strlen( $buf ) < 2 ) {
135 throw new Exception( "Ran out of input" );
136 }
137 $delay = unpack( 'v', $buf )[1];
138 $duration += $delay * 0.01;
139
140 fread( $fh, 1 ); // Transparent colour index
141
142 $term = fread( $fh, 1 ); // Should be a terminator
143 if ( strlen( $term ) < 1 ) {
144 throw new Exception( "Ran out of input" );
145 }
146 $term = unpack( 'C', $term )[1];
147 if ( $term != 0 ) {
148 throw new Exception( "Malformed Graphics Control Extension block" );
149 }
150 } elseif ( $extension_code == 0xFE ) {
151 // Comment block(s).
152 $data = self::readBlock( $fh );
153 if ( $data === "" ) {
154 throw new Exception( 'Read error, zero-length comment block' );
155 }
156
157 // The standard says this should be ASCII, however its unclear if
158 // thats true in practise. Check to see if its valid utf-8, if so
159 // assume its that, otherwise assume its windows-1252 (iso-8859-1)
160 $dataCopy = $data;
161 // quickIsNFCVerify has the side effect of replacing any invalid characters
162 UtfNormal\Validator::quickIsNFCVerify( $dataCopy );
163
164 if ( $dataCopy !== $data ) {
165 Wikimedia\suppressWarnings();
166 $data = iconv( 'windows-1252', 'UTF-8', $data );
167 Wikimedia\restoreWarnings();
168 }
169
170 $commentCount = count( $comment );
171 if ( $commentCount === 0
172 // @phan-suppress-next-line PhanTypeInvalidDimOffset
173 || $comment[$commentCount - 1] !== $data
174 ) {
175 // Some applications repeat the same comment on each
176 // frame of an animated GIF image, so if this comment
177 // is identical to the last, only extract once.
178 $comment[] = $data;
179 }
180 } elseif ( $extension_code == 0xFF ) {
181 // Application extension (Netscape info about the animated gif)
182 // or XMP (or theoretically any other type of extension block)
183 $blockLength = fread( $fh, 1 );
184 if ( strlen( $blockLength ) < 1 ) {
185 throw new Exception( "Ran out of input" );
186 }
187 $blockLength = unpack( 'C', $blockLength )[1];
188 $data = fread( $fh, $blockLength );
189
190 if ( $blockLength != 11 ) {
191 wfDebug( __METHOD__ . " GIF application block with wrong length" );
192 fseek( $fh, -( $blockLength + 1 ), SEEK_CUR );
193 self::skipBlock( $fh );
194 continue;
195 }
196
197 // NETSCAPE2.0 (application name for animated gif)
198 if ( $data == 'NETSCAPE2.0' ) {
199 $data = fread( $fh, 2 ); // Block length and introduction, should be 03 01
200
201 if ( $data != "\x03\x01" ) {
202 throw new Exception( "Expected \x03\x01, got $data" );
203 }
204
205 // Unsigned little-endian integer, loop count or zero for "forever"
206 $loopData = fread( $fh, 2 );
207 if ( strlen( $loopData ) < 2 ) {
208 throw new Exception( "Ran out of input" );
209 }
210 $loopCount = unpack( 'v', $loopData )[1];
211
212 if ( $loopCount != 1 ) {
213 $isLooped = true;
214 }
215
216 // Read out terminator byte
217 fread( $fh, 1 );
218 } elseif ( $data == 'XMP DataXMP' ) {
219 // application name for XMP data.
220 // see pg 18 of XMP spec part 3.
221
222 $xmp = self::readBlock( $fh, true );
223
224 if ( substr( $xmp, -257, 3 ) !== "\x01\xFF\xFE"
225 || substr( $xmp, -4 ) !== "\x03\x02\x01\x00"
226 ) {
227 // this is just a sanity check.
228 throw new Exception( "XMP does not have magic trailer!" );
229 }
230
231 // strip out trailer.
232 $xmp = substr( $xmp, 0, -257 );
233 } else {
234 // unrecognized extension block
235 fseek( $fh, -( $blockLength + 1 ), SEEK_CUR );
236 self::skipBlock( $fh );
237 continue;
238 }
239 } else {
240 self::skipBlock( $fh );
241 }
242 } elseif ( $buf == self::$gifTerm ) {
243 break;
244 } else {
245 if ( strlen( $buf ) < 1 ) {
246 throw new Exception( "Ran out of input" );
247 }
248 $byte = unpack( 'C', $buf )[1];
249 throw new Exception( "At position: " . ftell( $fh ) . ", Unknown byte " . $byte );
250 }
251 }
252
253 return [
254 'frameCount' => $frameCount,
255 'looped' => $isLooped,
256 'duration' => $duration,
257 'xmp' => $xmp,
258 'comment' => $comment,
259 ];
260 }
261
267 private static function readGCT( $fh, $bpp ) {
268 if ( $bpp > 0 ) {
269 $max = 2 ** $bpp;
270 for ( $i = 1; $i <= $max; ++$i ) {
271 fread( $fh, 3 );
272 }
273 }
274 }
275
281 private static function decodeBPP( $data ) {
282 if ( strlen( $data ) < 1 ) {
283 throw new Exception( "Ran out of input" );
284 }
285 $buf = unpack( 'C', $data )[1];
286 $bpp = ( $buf & 7 ) + 1;
287 $buf >>= 7;
288
289 $have_map = $buf & 1;
290
291 return $have_map ? $bpp : 0;
292 }
293
298 private static function skipBlock( $fh ) {
299 while ( !feof( $fh ) ) {
300 $buf = fread( $fh, 1 );
301 if ( strlen( $buf ) < 1 ) {
302 throw new Exception( "Ran out of input" );
303 }
304 $block_len = unpack( 'C', $buf )[1];
305 if ( $block_len == 0 ) {
306 return;
307 }
308 fread( $fh, $block_len );
309 }
310 }
311
326 private static function readBlock( $fh, $includeLengths = false ) {
327 $data = '';
328 $subLength = fread( $fh, 1 );
329 $blocks = 0;
330
331 while ( $subLength !== "\0" ) {
332 $blocks++;
333 if ( $blocks > self::MAX_SUBBLOCKS ) {
334 throw new Exception( "MAX_SUBBLOCKS exceeded (over $blocks sub-blocks)" );
335 }
336 if ( feof( $fh ) ) {
337 throw new Exception( "Read error: Unexpected EOF." );
338 }
339 if ( $includeLengths ) {
340 $data .= $subLength;
341 }
342
343 $data .= fread( $fh, ord( $subLength ) );
344 $subLength = fread( $fh, 1 );
345 }
346
347 return $data;
348 }
349}
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
static getMetadata( $filename)
static readBlock( $fh, $includeLengths=false)
Read a block.