ImageMagick-I use XAMPP LOCAL HOST(not yet installed), Also in my godaddy hosting shared Linux ultimate(installed)
http://www.polisphotos.com/jQueryPb/...ion/images.php
Imagick statements like below must be supported in my Ultimate shared Linux plan? Rotate does not operate, copy from jQuery book…currently reading "jQuery 1.3 with PHP" by Packt Publ, in the 7th chapter refers for Imagick for use from PHP for image rotate among first topics, but seems no work
What is: "The convert path to ImageMagick."Code:$manipulated=0; $effects=array('rotate'); foreach($effects as $eff)if(isset($_REQUEST[$eff]))$manipulated=1; if(!$manipulated)readfile($froot.$fname); else{ $image=new Imagick($froot.$fname); if(isset($_REQUEST['rotate'])){ $image->rotateImage(new ImagickPixel(),(int)$_REQUEST['rotate']); } echo $image; } ?>
what its mean by "convert path"(for imageMagick), needed in code, where?
Is it the folder images go or...? I just apply the code from the book...
/usr/bin/



Reply With Quote

Bookmarks