IMagick is a native PHP extension to create and modify images using the ImageMagick API. ImageMagick Studio LLC did not write nor does it maintain the IMagick extension, however, IMagick users are welcome to discuss the extension here.
darkfreaks
Post
by darkfreaks » 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 :
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.
mkoppanen
Posts: 309 Joined: 2007-06-09T07:06:32-07:00
Post
by mkoppanen » 2010-05-02T13:41:35-07:00
Hello,
for this function you need Imagick 0.9.x. Imagick 2.x.x or newer does not support the procedural API.
darkfreaks
Post
by darkfreaks » 2010-05-03T10:37:38-07:00
imagick module version 2.3.0
so how would i go about comparing images if this has been outdated???