mirror of
https://github.com/php/php-src.git
synced 2024-12-04 07:14:10 +08:00
70650810ad
(2.0.34 or 2.0.35) work.
15 lines
349 B
PHP
15 lines
349 B
PHP
--TEST--
|
|
Bug #37360 (gdimagecreatefromgif, bad image sizes)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('gd')) die("skip gd extension not available\n");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$im = imagecreatefromgif(dirname(__FILE__) . '/bug37360.gif');
|
|
var_dump($im);
|
|
?>
|
|
--EXPECTF--
|
|
Warning: imagecreatefromgif(): '%s' is not a valid GIF file in %s on line %d
|
|
bool(false)
|