php-src/ext/gd/tests/bug73279_old.phpt
Christoph M. Becker a375d54785
Migrate skip checks to --EXTENSIONS-- for ext/gd
Cf. PR #6787.

Closes GH-6994.
2021-05-22 15:38:51 +02:00

22 lines
487 B
PHP

--TEST--
Bug #73279 (Integer overflow in gdImageScaleBilinearPalette())
--EXTENSIONS--
gd
--SKIPIF--
<?php
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