La función GmagickDraw::annotate() es una función incorporada en PHP que se usa para dibujar el texto en la imagen.
Sintaxis:
GmagickDraw GmagickDraw::annotate( float $x, float $y, string $text )
Parámetros: esta función acepta tres parámetros, como se mencionó anteriormente y se describe a continuación:
- $x: Especifica la coordenada x del texto.
- $y: Especifica la coordenada y del texto.
- $texto: Especifica el contenido del texto.
Valor de retorno: esta función devuelve el objeto GmagickDraw en caso de éxito.
Excepciones: esta función lanza GmagickException en caso de error.
Los programas dados a continuación ilustran la función GmagickDraw::annotate() en PHP:
Imagen usada:
Programa 1 (Agregar texto a un dibujo):
<?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); // Create a GmagickDraw object $draw = new GmagickDraw(); // Set the color $draw->setFillColor('white'); // Function to draw rectangle $draw->rectangle(0, 0, 800, 400); // Set the fill color $draw->setFillColor('red'); // Set the font size $draw->setfontsize(80); // Annotate a text $draw->annotate(30, 120, 'GeeksforGeeks'); // Use of drawimage function $gmagick->drawImage($draw); // Display the output image header("Content-Type: image/png"); echo $gmagick->getImageBlob(); ?>
Producción:
Programa 2 (Agregar texto a 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('green'); // Set the font size $draw->setfontsize(30); // Annotate a text $draw->annotate(100, 120, 'This line is drawn with annotate'); // 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.annotate.php