La función Gmagick::labelimage() es una función incorporada en PHP que se usa para etiquetar la imagen. Una etiqueta es solo una string adjunta a una imagen que se puede extraer más tarde de la imagen. Esta etiqueta no está visible en la imagen en sí, pero puede hacerlo usando la función de anotación .
Sintaxis:
mixed Gmagick::labelimage( string $label )
Parámetros: Esta función acepta un único parámetro $etiqueta que contiene la etiqueta de una imagen.
Valor de retorno: esta función devuelve el objeto Gmagick con la etiqueta.
Excepciones: esta función lanza GmagickException en caso de error.
Los siguientes programas ilustran la función Gmagick::labelimage() en PHP:
Imagen usada:
Programa 1:
<?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); $label = "Hello World"; // Label the image $gmagick->labelimage($label); // Get the label from image $label = substr($gmagick, -28, strlen($label) + 1); echo $label; ?>
Producción:
Hello World
Programa 2:
<?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); $label = "This is my label"; // Label the image $gmagick->labelimage($label); // Get the label from image $getlabel = substr($gmagick, -32, strlen($label)); // 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('orange'); // Set the font size $draw->setfontsize(50); // Annotate a text $draw->annotate(30, 100, $getlabel); // 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/gmagick.labelimage.php