PHP | Función GmagickDraw polígono()

La función GmagickDraw::polygon() es una función incorporada en PHP que se usa para dibujar un polígono usando el trazo actual, el ancho del trazo y el color o textura de relleno, usando la array de coordenadas especificada.

Sintaxis:

GmagickDraw GmagickDraw::polygon( array $coordinates )

Parámetros: Esta función acepta un solo parámetro $coordinates que contiene la array de coordenadas.

Valor de retorno: esta función devuelve el objeto GmagickDraw en caso de éxito.

Excepciones: esta función lanza GmagickDrawException en caso de error.

Imagen utilizada:

Los siguientes ejemplos ilustran la función GmagickDraw::polygon() en PHP:

Ejemplo 1: Dibujar sobre una imagen.

<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
  
// Create a GmagickDraw object
$draw = new GmagickDraw();
  
// Set the fill color
$draw->setFillColor('red');
  
// Set the stroke color
$draw->setstrokecolor('green');
  
// Set the stroke width
$draw->setStrokeWidth(5);
  
// Create a polygon
$draw->polygon([
    ['x' => 300, 'y' => 50],
    ['x' => 140, 'y' => 150],
    ['x' => 380, 'y' => 150],
    ['x' => 110, 'y' => 75],
]);
  
// Use of drawimage function
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

Producción:

Ejemplo 2: Dibujar desde cero.

<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
  
// Create a GmagickDraw object
$draw = new GmagickDraw();
  
// Draw rectangle for background
$draw->rectangle(-10, -10, 800, 400);
  
// Set the fill color
$draw->setFillColor('#0E0E0E');
  
// Set the stroke color
$draw->setstrokecolor('green');
  
// Set the stroke width
$draw->setStrokeWidth(5);
  
// Create a polygon
$draw->polygon([
    ['x' => 400, 'y' => 50],
    ['x' => 40, 'y' => 150],
    ['x' => 480, 'y' => 150],
    ['x' => 110, 'y' => 75],
]);
  
// Use of drawimage function
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

Producción:

Referencia: https://www.php.net/manual/en/gmagickdraw.polygon.php

Publicación traducida automáticamente

Artículo escrito por gurrrung y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *