I have tried using steps for installing ImageMagick from How to install ImageMagick for WAMP 2.5 and from Where to find php_imagick.dll for php 5.5.12 for Windows wampserver 2.5?. I am using Windows 10 and WAMP 2.5 with PHP 5.5.12. I install using ImageMagick-7.0.3-3-Q16-x64-dll.exe and have tried using a few of this
All of them still get me Fatal error: Class 'Imagick' not found in C:\wamp\www\test.php on line 19 from testing if imagemagick is working using these codes
<?php
$im = new Imagick();
$im->newPseudoImage(100, 100, "magick:rose");
$im->setImageFormat("png");
$im->roundCorners(5,3);
$type=$im->getFormat();
header("Content-type: $type");
echo $im->getimageblob();
?>
I have put the CORE_RL files into C:\wamp\bin\apache\apache2.4.9\bin and php_imagick.dll to here: C:\wamp\bin\php\php5.5.12\ext\ please help!
I have been struggling with ImageMagick working on my Wamp Server for a few hours and have finally figured out how to get it working on my Windows 10 system.
1) Making sure you have the latest Wamp Server on your system.
2) Download the latest Windows version of ImageMagick from the ImageMagick server http://www.imagemagick.org
3) Install it and make sure to use the c:\Imagemagick for installation.
4) Download the latest Pecl files from http://windows.php.net/downloads/pecl/releases/imagick/ select the newest version.
5) Copy the CORE dll files from that download and put them in the Wamp Server Apache Bin directory.
6) Copy the php_imagick.dll file from that download and put it into the Wamp Server php ext directory.
7) Put "extension=php_imagick.dll" into the php.ini file via Wamp Server.
8) Restart Wamp Server and hopefully it works.