(PHP 4, PHP 5, PHP 7)
imagesetpixel — Setze ein einzelnes Pixel
$image
, int $x
, int $y
, int $color
) : boolimagesetpixel() zeichnet ein Pixel an der angegebenen Koordinate.
image
Eine von den verschiedenen Erzeugungsfunktionen wie imagecreatetruecolor() gelieferte Grafikressource.
x
x-Koordinate.
y
y-Koordinate.
color
Eine Farbkennung, die mit imagecolorallocate() erzeugt wurde.
Gibt bei Erfolg TRUE
zurück. Im Fehlerfall wird FALSE
zurückgegeben.
Beispiel #1 imagesetpixel() Beispiel
Eine zufällige Zeichnung, die mit einem normalen Bild endet.
<?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);
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie: