PHP
Referenzliste
imagefilledrectangle
Image-Funktionen
Befehl:
int imagefilledrectangle ( resource $im , int $x1 , int $y1 , int $x2 , int $y2 , int $col )
Parameter-Liste:
Beschreibung | |
---|---|
Eine Bildressource von einer der Bilderzeugungsfunktionen, wie imagecreatetruecolor() zurückgegeben. | |
x-Koordinate für Punkt 1. | |
y-Koordinate für Punkt 1. | |
x-Koordinate für Punkt 2. | |
y-Koordinate für Punkt 2. | |
Ein Farbkennung mit imagecolorallocate() erstellt. |
Beschreibung:
ImageFilledRectangle() erzeugt ein mit der Farbe col gefülltes Rechteck innerhalb des Bildes im. Die obere linke Eck-Koordinate wird mittels x1 und y1, die untere rechte Eck-Koordinate mittels x2 und y2 definiert. 0, 0 ist dabei die linke obere Ecke des Bildes im.
Aktiv in Version:
(PHP 4, PHP 5, PHP 7)
imagefilledrectangle() - Beispiel:
Eingabe:
<?PHP $image = imagecreate ( 300, 150 ); $farbe_body=imagecolorallocate ( $image, 243, 243, 243 ); $farbe_b = imagecolorallocate ( $image, 10, 36, 106 ); imagefilledrectangle ( $image, 50, 60, 230, 90, $farbe_b ); header ( 'Content-Type: image/png' ); imagepng ( $image ); imagedestroy($image); ?>
Ausgabe:
imagefilledrectangle() - Beispiel:
Eingabe:
<?PHP // Create a 55x30 image $im = imagecreatetruecolor(55, 30); $white = imagecolorallocate($im, 255, 255, 255); // Draw a white rectangle imagefilledrectangle($im, 4, 4, 50, 25, $white); // Save the image imagepng($im, './imagefilledrectangle.png'); imagedestroy($im); ?>
Ausgabe:
Image-Funktionen