Imagick
在线手册:中文 英文
PHP手册

Imagick::optimizeImageLayers

(PECL imagick 2.0.0)

Imagick::optimizeImageLayersRemoves repeated portions of images to optimize

说明

bool Imagick::optimizeImageLayers ( void )

Compares each image the GIF disposed forms of the previous image in the sequence. From this it attempts to select the smallest cropped image to replace each frame, while preserving the results of the animation. 此方法在Imagick基于ImageMagick 6.2.9以上版本编译时可用。

返回值

成功时返回 TRUE .

错误/异常

错误时抛出 ImagickException .

范例

Example #1 Using Imagick::optimizeImageLayers()

Reading, optimizing and writing a GIF image

<?php
/* create new imagick object */
$im = new Imagick("test.gif");

/* optimize the image layers */
$im->optimizeImageLayers();

/* write the image back */
$im->writeImages("test_optimized.gif"true);
?>

参见


Imagick
在线手册:中文 英文
PHP手册