bug39508.phpt 282 B

12345678910111213
  1. --TEST--
  2. Bug #39508 (imagefill crashes with small images 3 pixels or less)
  3. --EXTENSIONS--
  4. gd
  5. --FILE--
  6. <?php
  7. $im = imagecreatetruecolor(3,1);
  8. $bgcolor = imagecolorallocatealpha($im,255, 255, 0, 0);
  9. imagefill($im,0,0,$bgcolor);
  10. print_r(imagecolorat($im, 1,0));
  11. ?>
  12. --EXPECT--
  13. 16776960