Forum und email

Imagick::compareImages

(No version information available, might be only in CVS)

Imagick::compareImages — Compares an image to a reconstructed image

Leírás

array Imagick::compareImages ( Imagick $compare , int $metric )
Warning

Ez a függvény jelenleg nincs dokumentálva, csak a paraméterek listája található itt.

Warning

Ez a függvény KÍSÉRLETI JELLEGGEL MŰKÖDIK. A függvény működése, neve, bármi amit a függévénnyel kapcsolatban dokumentáltunk megváltozhat egy későbbi PHP kiadásban minden figyelmeztetés nélkül. Ezt a függvényt csak a saját felelősségedre használd!

Returns an array containing a reconstructed image and the difference between images.

Paraméterek

compare

An image to compare to.

metric

Provide a valid metric type constant. Refer to this list of metic constants.

Visszatérési értékek

Returns TRUE on success.

Példák

Example#1 Using Imagick::compareImages():

Compare images and display the reconstructed image

<?php

$image1 
= new imagick("image1.png");
$image2 = new imagick("image2.png");

$result $image1->compareImage($image2Imagick::METRIC_MEANSQUAREERROR);
$result[0]->setImageFormat("png");

header("Content-Type: image/png");
echo 
$result[0];

?>