La función Imagick::removeImage() es una función incorporada en PHP que se utiliza para eliminar una imagen de la lista de imágenes. Esta función elimina la imagen actual a la que apunta el cursor.
Sintaxis:
bool Imagick::removeImage( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función Imagick::removeImage() en PHP:
Programa 1:
<?php // Create a new Imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Count the image echo 'Number of images before removing: '. $imagick->count() . '<br>'; // Remove the Image $imagick->removeImage(); // Count the image echo 'Number of images after removing: '. $imagick->count();; ?>
Producción:
Number of images before removing: 1 Number of images after removing: 0
Programa 2:
<?php // Create a new Imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Add a new image to Imagick object $imagick->addImage(new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png')); // Count the image echo 'Number of images before removing: '. $imagick->count() . '<br>'; // Remove the Image $imagick->removeImage(); // Count the image echo 'Number of images after removing: '. $imagick->count();; ?>
Producción:
Number of images before removing: 2 Number of images after removing: 1
Referencia: https://www.php.net/manual/en/imagick.removeimage.php