PHP | Función Imagick commentImage()

La función Imagick::commentImage() es una función incorporada en PHP que se usa para agregar el comentario en una imagen.

Sintaxis:

bool Imagick::commentImage( $comment )

Parámetros: Esta función acepta un único parámetro $comentario que se utiliza para contener el comentario.

Valor de retorno: esta función devuelve True en caso de éxito.

Imagen original:

Los siguientes programas ilustran la función Imagick::commentImage() en PHP:
Programa 1:

<?php 
// require_once('vendor/autoload.php');
   
// Create an Imagick Object
$image = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png');
   
// Add comment to the image 
$image->commentImage("GeeksforGeeks");
  
// Display the comment 
echo $image->getImageProperty("comment");
  
?>

Producción:

GeeksforGeeks

Programa 2:
Imagen creada por Imagick Función:

<?php
$string = "Computer Science portal for Geeks!";
   
// creating new image of above String
// and add color and background
$im = new Imagick();
$draw = new ImagickDraw();
  
// Fill the color in image
$draw->setFillColor(new ImagickPixel('green'));
  
// Set the text font size
$draw->setFontSize(50);
  
$metrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($metrix['textWidth'], $metrix['textHeight'],
         new ImagickPixel('white'));
           
// Draw the image         
$im->drawImage($draw);
  
// Function to add border image
$im->borderImage(new ImagickPixel('Blue'), 5, 5);
  
// Function to add comment
$im->commentImage("G4G");
  
// Function to set the image format
$im->setImageFormat('png');
   
// Printing Added Comment 
echo $im->getImageProperty("comment");
?>

Producción:

G4G

Referencia: http://php.net/manual/en/imagick.commentimage.php

Publicación traducida automáticamente

Artículo escrito por R_Raj 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 *