mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
e1285c4aa5
Cf. <https://wiki.php.net/rfc/deprecations_php_8_1#num_points_parameter_of_image_open_filled_polygon>. Co-authored-by: Máté Kocsis <kocsismate@woohoolabs.com> Co-authored-by: George Peter Banyard <7906688+Girgias@users.noreply.github.com> Closes GH-6789.
23 lines
829 B
PHP
23 lines
829 B
PHP
--TEST--
|
|
Bug #55005 (imagepolygon num_points requirement)
|
|
--EXTENSIONS--
|
|
gd
|
|
--FILE--
|
|
<?php
|
|
require_once __DIR__ . '/func.inc';
|
|
|
|
$g = imagecreate(300, 300);
|
|
$bgnd = imagecolorallocate($g, 255, 255, 255);
|
|
$fgnd = imagecolorallocate($g, 0, 0, 0);
|
|
trycatch_dump(
|
|
fn () => imagefilledpolygon($g, array(100,10, 100,100, 180,100), 2, $fgnd),
|
|
fn () => imagepolygon($g, array(200,10, 200,100, 280,100), 2, $fgnd)
|
|
);
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: imagefilledpolygon(): Using the $num_points parameter is deprecated in %s on line %d
|
|
!! [ValueError] imagefilledpolygon(): Argument #3 ($num_points_or_color) must be greater than or equal to 3
|
|
|
|
Deprecated: imagepolygon(): Using the $num_points parameter is deprecated in %s on line %d
|
|
!! [ValueError] imagepolygon(): Argument #3 ($num_points_or_color) must be greater than or equal to 3
|