Page 1 of 1

undefined function imagick_isimageequal

Posted: 2010-04-23T09:09:42-07:00
by darkfreaks
so on the following line i get this error "Undefined function imagick_isimagesequal on line 21"

line is :

Code: Select all

<?php
//compare both images
imagick_isimagesequal($image,$image_two);?>
which i fixed to this and get the same error:

Code: Select all

<?php
//compare both images
imagick_isimagesequal($image->$im1,$image_two->$im2);?>

the second php variable is the connect handler for both images.

Re: undefined function imagick_isimageequal

Posted: 2010-05-02T13:41:35-07:00
by mkoppanen
Hello,

for this function you need Imagick 0.9.x. Imagick 2.x.x or newer does not support the procedural API.

Re: undefined function imagick_isimageequal

Posted: 2010-05-03T10:37:38-07:00
by darkfreaks
imagick module version 2.3.0

so how would i go about comparing images if this has been outdated???