Open In App

PHP | Imagick optimizeImageLayers() Function

Improve
Improve
Like Article
Like
Save
Share
Report

The Imagick::optimizeImageLayers() function is an inbuilt function in PHP which is used to remove the repeated portions of images to optimize. This function compares each image the GIF disposed forms of the previous image in the sequence. 

Syntax:

bool Imagick::optimizeImageLayers( void)

Parameters: This function does not accepts any parameters. 

Return Value: This function returns TRUE on success. 

Errors/Exceptions: This function throws ImagickException on error. 

Below programs illustrate the Imagick::optimizeImageLayers() function in PHP: 

Program: 

php




<?php
 
// Create a new imagick object
$imagick = new Imagick(
  
// Optimizing the image layers
$imagick->optimizeImageLayers();
  
header("Content-Type: image/jpg");
 
// Display the output image
echo $imagick->getImageBlob();
 
?>


Output:

  

Reference: https://www.php.net/manual/en/imagick.optimizeimagelayers.php


Last Updated : 10 Jun, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads