Hi all!
Stupid stupid stupid thing...
I'd like to compile Imagick from pear.php.net into my php!
I do as follows:
First compile GraficksMagick
then do exactly the same as written on pear.php.net
(phpize in ext/imagick after renaming, ./buildconf in PHP4 folder, configure --with-imagick --with-mysql and so on...)
Well then, configuration works, although make and make install!
Unfortunately, php doesn't recognize the new library and I can't use it!
I try:
<?
php$handle = imagick_create()
or die ("Could not create handle");
print("Connected successfully");
imagick_free($handle);?>
which leads to:
Fatal error: Call to undefined function: imagick_create() in fileresizing2.php on line 28
Thx for your urgent help
Eule