mirror of
https://github.com/php/php-src.git
synced 2024-12-20 07:20:33 +08:00
a555cc0b3d
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
21 lines
538 B
PHP
21 lines
538 B
PHP
--TEST--
|
|
Bug #73279 (Integer overflow in gdImageScaleBilinearPalette())
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('gd')) die('skip gd extension not available');
|
|
if (GD_BUNDLED || version_compare(GD_VERSION, '2.2.4', '>=')) {
|
|
die('skip only for external libgd < 2.2.4');
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$src = imagecreate(100, 100);
|
|
imagecolorallocate($src, 255, 255, 255);
|
|
$dst = imagescale($src, 200, 200, IMG_BILINEAR_FIXED);
|
|
printf("color: %x\n", imagecolorat($dst, 99, 99));
|
|
?>
|
|
--XFAIL--
|
|
Bug #330 has not yet been fixed
|
|
--EXPECT--
|
|
color: ffffff
|