سلام،
من برای برنامم نیاز به Imagick Image Library دارم!
با استفاده از این دستورالعمل برای ویندوز اقدام به نصب کردم تمامی مراحل رو انجام دادم اما هنوز هم این پیغام رو می گیرم:
http://us.php.net/manual/en/imagick.installation.php
برای تست هم که نصب شده یا نه این 5 خط آخر که خودش گفت زدم اما یه صفحه خالی داد و هیچ!!
من برای برنامم نیاز به Imagick Image Library دارم!
با استفاده از این دستورالعمل برای ویندوز اقدام به نصب کردم تمامی مراحل رو انجام دادم اما هنوز هم این پیغام رو می گیرم:
http://us.php.net/manual/en/imagick.installation.php
کد:
Installing Imagick on Windows isn't too hard. I followed the guide at http://valokuva.org/?page_id=50 and managed to install it without too much sweat.
1. Visit http://imagemagick.org/script/binary-releases.php#windows and download "ImageMagick-6.5.4-6-Q16-windows-dll.exe"
2. Pick a version at http://valokuva.org/outside-blog-content/imagick-windows-builds/ The directories are in YYMMDD format. The latest version that worked for me was 2008-Jul-09 so download 080709/php_imagick_dyn-Q16.dll respectively.
3. Rename php_imagick_dyn-Q16.dll to "php_imagick.dll" and move it to php/ext
4. open php.ini, and make sure
extension=php_imagick.dll
appears in the file and uncommented then resave.
Note: phpinfo() will tell you the location of the loaded php.ini file.
5. Re-start your webserver.
That's it, a simple test will tell you if your installation was successful.
<?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();
?>
برای تست هم که نصب شده یا نه این 5 خط آخر که خودش گفت زدم اما یه صفحه خالی داد و هیچ!!