undefined function imagick_isimageequal
Posted: 2010-04-23T09:09:42-07:00
so on the following line i get this error "Undefined function imagick_isimagesequal on line 21"
line is :
which i fixed to this and get the same error:
the second php variable is the connect handler for both images.
line is :
Code: Select all
<?php
//compare both images
imagick_isimagesequal($image,$image_two);?>
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.