La función Imagick::labelImage() es una función incorporada en PHP que se usa para agregar una etiqueta a una imagen.
Sintaxis:
bool Imagick::labelImage( string $label )
Parámetros: esta función acepta un solo parámetro $etiqueta que contiene la etiqueta para agregar a la imagen.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Errores/Excepciones: Esta función lanza ImagickException en caso de error.
El siguiente programa ilustra la función Imagick::labelImage() en PHP:
Programa:
<?php // Create a new imagick object $imagick = new Imagick( 'https://cdncontribute.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); // Adding the label to the image $imagick->labelImage("This is my label."); // Getting the label of the image $labelInImage = $imagick->getImageProperties("label"); // Display the label of image echo $labelInImage['label']; ?>
Producción:
This is my label.
Referencia: https://www.php.net/manual/en/imagick.labelimage.php