(PECL imagick 2.0.0)
Imagick::compareImageLayers — Returns the maximum bounding region between images
Compares each image with the next in a sequence and returns the maximum bounding region of any pixel differences it discovers. 이 메쏘드는 Imagick을 ImageMagick 6.2.9 이상으로 컴파일 했을 때만 사용할 수 있습니다.
성공시에 TRUE를 반환합니다.
오류시에 ImagickException이 발생합니다.
Example #1 Using Imagick::compareImageLayers()
Comparing image layers
<?php
/* create new imagick object */
$im = new Imagick("test.gif");
/* optimize the image layers */
$result = $im->compareImageLayers(imagick::LAYERMETHOD_COALESCE);
/* work on the $result */
?>