Imagick::compareImages
ある画像を再構築された画像と比較する
説明
public array Imagick::compareImages(Imagick $compare
, int $metric
)
パラメータ
-
compare
-
比較したい画像。
-
metric
-
メトリック定数を指定します。この
メトリック定数
の一覧を参照ください。
戻り値
再構築された画像と画像の差異を含む配列を返します。
エラー / 例外
エラー時に ImagickException をスローします。
例
例1 Imagick::compareImages の使用法
<?php
$image1 = new imagick("image1.png");
$image2 = new imagick("image2.png");
$result = $image1->compareImages($image2, Imagick::METRIC_MEANSQUAREERROR);
$result[0]->setImageFormat("png");
header("Content-Type: image/png");
echo $result[0];
?>