Du bist hier: Tips » Scripte » PHP
PHP
Referenzliste

imagesetpixel

Image-Funktionen

    Befehl:
int imagesetpixel ( resource $im , int $x , int $y , int $col )


    Parameter-Liste:
NameBeschreibung
imageEine von den verschiedenen Erzeugungsfunktionen wie imagecreatetruecolor() gelieferte Grafikressource.
xx-Koordinate.
yy-Koordinate.
colorEin Farbkennung mit imagecolorallocate() erstellt.

    Rückgabewerte:
Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.

    Beschreibung:
ImageSetPixel() zeichnet ein Pixel an der Koordinate x / y. Dabei ist die Koordinate 0, 0 die linke obere Ecke des Bildes im. Die Pixelfarbe wird durch col bestimmt.


    Aktiv in Version:
(PHP 4, PHP 5, PHP 7)

    Siehe auch:
ein neues farbgetreue Bild erstellen
 
Weisen Sie eine Farbe für ein Bild
 
Gibt den Index der Farbe eines Pixels
 

imagesetpixel() - Beispiel:


Eingabe:
<?php
$image = imagecreate ( 300, 150 );

$farbe_body = imagecolorallocate ( $image, 243, 243, 243 );
$farbe_b = imagecolorallocate ( $image, 10, 36, 106 );

$y = 45;
$z = 23;

for ( $x = 0; $x <= 20; $x++ )
{
  imagesetpixel ( $image, $z, $y, $farbe_b );
  imagesetpixel ( $image, $y, $z, $farbe_b );

  $y += 2;

  $z += 5;
}

header('Content-type: image/png');
imagepng ( $image );
imagedestroy ( $image );
?>


Ausgabe:
imagesetpixel() - Beispiel 2: Eine zuf�llige Zeichnung, die mit einem regelm��igen Bild endet.


Eingabe:
<?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);
?>


Ausgabe:
Image-Funktionen