我正在使用 php 函数创建图像,imagesetpixel()
我可以设置起始 x 位置和 y 位置,但如果我在代码中有它:
for ($i=1;$i<50;$i++)
{
for ($a=1;$a<50;$a++)
{
imagesetpixel($img, $i, $a, $color);
}
}
这会创建每个字段 1x1px 但我希望它可能是 5x5px。有可能做出类似的东西吗?
见下面的网址: -
http://phptutorial.info/?imagesetpixel
http://php.net/manual/en/function.imagesetpixel.php
例子:-
<?php
$x = 200;
$y = 200;
$gd = imagecreatetruecolor($x, $y);
$corners[0] = array('x' => 100, 'y' => 10);
$corners[1] = array('x' => 0, 'y' => 190);
$corners[2] = array('x' => 200, 'y' => 190);
$red = imagecolorallocate($gd, 255, 0, 0);
for ($i = 0; $i < 100000; $i++) {
imagesetpixel($gd, round($x),round($y), $red);
$a = rand(0, 2);
$x = ($x + $corners[$a]['x']) / 2;
$y = ($y + $corners[$a]['y']) / 2;
}
header('Content-Type: image/png');
imagepng($gd);
?>
您必须将图像的大小作为参数传递给 - 例如 [imagecreate][1] 函数。
例子:
$width = 5;
$height = 5;
$img = imagecreate($width, $height);