0

以下简单代码在给定图像上生成点(这也是动态生成的),但由于未知原因,我看不到它们......

for ($i = 0; $i < $max; $i++)
{
  $xcoords = mt_rand(50, 450);
  $ycoords = mt_rand(50, 450);
  if ($ycoords > 300)
  {
    drawMe($red);
  }
  elseif ($ycoords > 150 && $ycoords < 300)
  {
    drawMe($green);
  }
  else
  {
    drawMe($blue);
  }

这是使用颜色的代码:

$red = imagecolorallocate($im, 255, 0, 0);
$green = imagecolorallocate($im, 0, 128, 0);
$blue = imagecolorallocate($im, 0, 0, 255);

这是 drawMe() 函数:

function drawMe($color)
{
  ob_start();
  imagesetpixel($im, $xcoords, $ycoords - 1, $color);
  imagesetpixel($im, $xcoords + 1, $ycoords - 1, $color);
  imagesetpixel($im, $xcoords + 1, $ycoords, $color);
  imagesetpixel($im, $xcoords + 1, $ycoords + 1, $color);
  imagesetpixel($im, $xcoords, $ycoords, $color); // main dot !!!
  imagesetpixel($im, $xcoords, $ycoords + 1, $color);
  imagesetpixel($im, $xcoords - 1, $ycoords + 1, $color);
  imagesetpixel($im, $xcoords - 1, $ycoords, $color);
  imagesetpixel($im, $xcoords - 1, $ycoords - 1, $color);
  return ob_get_clean();
}

如果我删除 ob_start 和 ob_get_clean,我会收到警告:

Warning: imagesetpixel() expects parameter 1 to be resource, null given in /var/www/test.php on line 75 to 83

那是 $im 和背景:

$im = imagecreate(640, 480);
$bg = imagecolorallocate($im, 255, 255, 255);
4

1 回答 1

0

您需要在开始之前将新的 $im 定义为新图像

你可以使用 imagick 类

$image = new Imagick();
$image->newImage(100, 100, new ImagickPixel('red'));
$image->setImageFormat('png');
于 2013-03-14T12:47:26.473 回答