12345678910111213141516171819202122232425262728293031 |
- --TEST--
- Bug #66590 (imagewebp() doesn't pad to even length)
- --EXTENSIONS--
- gd
- --SKIPIF--
- <?php
- if (!GD_BUNDLED && version_compare(GD_VERSION, '2.2.0', '<')) {
- die("skip test requires GD 2.2.0 or higher");
- }
- if (!function_exists('imagewebp')) die('skip WebP support not available');
- ?>
- --FILE--
- <?php
- $filename = __DIR__ . '/bug66590.webp';
- $im = imagecreatetruecolor(75, 75);
- $red = imagecolorallocate($im, 255, 0, 0);
- imagefilledrectangle($im, 0, 0, 74, 74, $red);
- imagewebp($im, $filename);
- $stream = fopen($filename, 'rb');
- fread($stream, 4); // skip "RIFF"
- $length = fread($stream, 4);
- fclose($stream);
- $length = unpack('V', $length)[1] + 8;
- var_dump($length === filesize($filename));
- ?>
- --CLEAN--
- <?php
- @unlink(__DIR__ . '/bug66590.webp');
- ?>
- --EXPECT--
- bool(true)
|