mirror of
https://github.com/php/php-src.git
synced 2026-04-18 13:31:27 +02:00
13 lines
243 B
PHP
13 lines
243 B
PHP
--TEST--
|
|
Bug #45799 (imagepng() crashes on empty image).
|
|
--EXTENSIONS--
|
|
gd
|
|
--FILE--
|
|
<?php
|
|
$img = imagecreate(500,500);
|
|
imagepng($img);
|
|
imagedestroy($img);
|
|
?>
|
|
--EXPECTF--
|
|
Warning: imagepng(): gd-png error: no colors in palette in %s on line %d
|