VC6 Windows binaries for imagick 2.3.0

Here are Windows binaries for imagick 2.3.0 compiled with VC6 (you can find VC9 binaries at Mikko’s blog) against PHP 5.3.2 (API20090626).

Remember that you still need the appropriate ImageMagick DLL for imagick to work.

Tags: , , ,

Related posts:

  1. Basic word wrapping with Imagick

Follow me on Twitter

  • Can I buy you a beer? You saved my day, man!!
  • Bharath Enaganti
    thanks you very much.....i tried whole day but i didn't succeeded.here the correct version of dll available.thanks a lot..............
  • S3R
    thank u Veryyyyyy much. I have installed it after one week.
  • I'm running Xamp on Windows Server 2003, Apache 2.2.14, PHP 5.3...
    I get same errors when using relative path, works fine when using Real Path though. Does anyone know of fix for being able to use relative paths.
  • Michael
    ini_set("display_errors", "On");
    error_reporting(E_ALL);
    $path = realpath( "user.jpg" );
    print_r( $path );
    $image = new Imagick( $path );
    echo( $image );
    ?>
    And nothing - still get clear site :/
  • Michael
    Hi, I used this dll and nothing happen. I have no errors. In my phpinfo I have imagick extenction. I can use convert in command line. When I use it in php nothing happens. No errors, no output, nothing. script like that: " print_r("test"); $image = new Imagick( realpath("image.jpg") ); ?> " shows nothing. I get white page. Any suggestions?
  • Is error reporting disabled?
  • Yeppi
    Thanks a lot.
  • -esjay
    Thank you sir!
  • Dmitrij
    GREAT THANK !!
  • tndr
    I can load the extension fine and can see it in the phpinfo(). but when i execute a simple code like this:

    $img = new Imagick('test.jpg');
    ?>

    I get "The connection was reset" error. (php files without imagick code work fine)

    I have this error in apache's error log:
    "Parent: child process exited with status 255 -- Restarting."

    Any suggestions?

    PHP version: 5.3.2
    Apache version: 2.2.14
  • Try running the script through the command line to see if anything more helpful comes up. Also, make sure you have the latest ImageMagick DLLs.
  • tndr
    I get a similar error as above posters when i run it in the command line:

    "Fatal error: Class "Imagick" not found in C:\wamp\www\test\imt.php on line 3"

    and i have the latest imagemagick installed:
    "ImageMagick-6.6.1-5-Q16-windows-dll.exe"
  • Thorvald
    You need to enable extension in cmd line
    I am also getting the same issue.
    I have found that Imagick is crashing when trying to open a file with a relative path. Using realpath() do not cause such issue.
    Relative path still works for saving.
  • Kcko
    My Apache is constantly falling and realpath is the only solution for Windows. Thanks!
  • Nicolas
    I have the same problem.

    I think it's a format problem : png or jpg not supported when I check the list of supported format in phpinfo()

    But I don't know yet how to resolve this problem.

    If you have idea, please share ! :-)
  • Try getting the latest ImageMagick DLL from their website. Also check to make sure that you don't have any old ImageMagick DLLs lying around in folders in PATH.
  • Henry
    I've downloaded your dll, added it to the ext folder of my WAMP, added the extension line to my php.ini file and installed ImageMagick. The php_imagick.dll loads correctly and my phpinfo() shows that the imagick extension is enabled. Although, when I do:
    $img = new Imagick('path/to/image.jpg');
    I get an error saying: Fatal error: Cannot find class Imagick.
    Any idea?
  • My first suggestion would be to run the script through PHP's command line. That might reveal an error message.
  • Henry
    If I run the script while using the commandline: "phpunit test.php" I get the following:
    PHP Fatal error: Class 'Imagick' not found in F:\wamp\www\bla.php on line 5
    Just the same as in the browser.
  • Hmm, I'm not sure what the problem is. Try asking the guy who made it -- Mikko.
  • Yessss :) thanks for the links I rely needed this! It turns out that this is the only binaries that work with the PHP installed with the wamp server 2!
blog comments powered by Disqus