nevermind, my hosting provider figured it out for me, all they did was recompile it they said (shrugs) oh well
anyway, to test your imageMagick install to see if its working,
from a SSH command line, type
Code:
convert imagefilename.jpg -resize 300x300 newimagefilename.jpg
(or you can use mogrify to rotate and crop images as well)
replacing "imagefilename.jpg" and "newimagefilename.jpg" with your image you want to manipulate with imagemagick
and it should create a new image... If it doesn't, check your file permissions first.
imageMagick should then be installed at path: /usr/bin
imageMagick uses 2 main commands mostly, /usr/bin/mogrify and /usr/bin/convert, depending upon if you want to resize, crop, flip rotate, etc, see man ImageMagick for more information
