Hello, I have setup ImageMagick to my root with ssh: wget ftp://ftp.imagemagick.org/pub/ImageMagi ... 1-3.tar.gz gunzip ImageMagick-6.4.1-3.tar.gz tar -xf ImageMagick-6.4.1-3.tar cd ImageMagick-6.4.1 ./configure make make install PHP: So, what will i do now? They say firstly install imagemagick, and then install imagick. But how? How will i install imagick now? I'm using dedicated server which is CENTOS Enterprise 4.6 i686 on standard. Please help me... Thanks...
yeah those commands are fine. you don't need anything else. you can call imagemagick commands from php with exec() or system(). Find the path of imagemagick with "which convert", then do like so: exec("/usr/bin/convert picture.jpg -resize 10x10 output.jpg");