La función imagerectangle() es una función incorporada en PHP que se usa para dibujar el rectángulo.
Sintaxis:
bool imagerectangle( $image, $x1, $y1, $x2, $y2, $color )
Parámetros: esta función acepta seis parámetros, como se mencionó anteriormente y se describe a continuación:
- $imagen: lo devuelve una de las funciones de creación de imágenes, como imagecreatetruecolor(). Se utiliza para crear el tamaño de la imagen.
- $x1: este parámetro se usa para establecer la coordenada x superior izquierda.
- $y1: este parámetro se usa para establecer la coordenada y superior izquierda.
- $x2: este parámetro se usa para establecer la coordenada x inferior derecha.
- $y2: este parámetro se usa para establecer la coordenada y inferior derecha.
- $color: un identificador de color creado con imagecolorallocate().
Valor devuelto: esta función devuelve verdadero en caso de éxito o falso en caso de error.
Los siguientes programas ilustran la función imagerectangle() en PHP:
Programa 1:
<?php // Create an image of given size $image = imagecreatetruecolor(400, 400); // Create an image color $green = imagecolorallocate($image, 0, 153, 0); $white = imagecolorallocate($image, 255, 255, 255); // Draw the rectangle imagerectangle($image, 50, 50, 350, 350, $green); imagerectangle($image, 100, 100, 300, 300, $white); // Output and free from memory header('Content-Type: image/jpeg'); imagejpeg($image); imagedestroy($image); ?>
Producción:
Programa 2:
<?php // Create an image of given size $image = imagecreatetruecolor(400, 400); // Set the background color of image $background_color = imagecolorallocate($image, 255, 255, 255); // Fill background with above selected color imagefill($image, 0, 0, $background_color); // Create an image color $green = imagecolorallocate($image, 0, 153, 0); $white = imagecolorallocate($image, 155, 53, 32); // Draw the rectangle imagerectangle($image, 50, 50, 350, 350, $green); imagerectangle($image, 100, 100, 300, 300, $white); // Output and free from memory header('Content-Type: image/jpeg'); imagejpeg($image); imagedestroy($image); ?>
Producción:
Referencia: http://php.net/manual/en/function.imagerectangle.php