Use PHP to extend php_imagick to resize, rotate, sharpen, subtract, or add special effects to images.

Source: Internet
Author: User
Tags imagemagick
Php_imagick is a PHP extension package for image processing. it can be used to resize, rotate, sharpen, subtract, or add special effects to images. 1. install Imagick extension in windows: 1. download & amp; nbsp; ImageMagic

Php_imagick is a PHP extension package for image processing. it can be used to resize, rotate, sharpen, subtract, or add special effects to images.
1. install Imagick extension in windows:

1. download and install ImageMagick

Http: // image_magick.veidrodis.com/image_magick/binaries/ImageMagick-6.6.2-10-Q16-windows-dll.exe

2. download php_imagick.dll

Http://valokuva.org/outside-blog-content/imagick-windows-builds/php53/imagick-2.3.0-dev/vc9_nts/php_imagick.dll

If you are using thread-safe php, download
Http://valokuva.org/outside-blog-content/imagick-windows-builds/php53/imagick-2.3.0-dev/vc9_zts/php_imagick.dll

3. set
Add in php. ini
Extension = php_imagick.dll, restart web server


II. install Imagick extension in linux:

1. install ImageMagick in yum


Yum install ImageMagick-devel

2. test whether the installation is successful.

Convert-version

3. install imagick extension


wget http://pecl.php.net/get/imagick-3.1.0RC2.tgztar xzvf imagick-3.1.0RC2.tgzcd imagick-3.1.0RC2phpize./configuremakemake install

4. edit the php. ini file and add the following code at the end of the file:

Extension = imagick. so

5. restart the apache server.

Service httpd restart


III. cases
1. border processing

//by www.phpddt.comheader('Content-type: image/jpeg');$image = new Imagick('test.jpg');$color=new ImagickPixel();$color->setColor("rgb(220,220,220)");$image->borderImage($color,5,4);$image->blurImage(5,5,imagick::CHANNEL_GREEN);echo $image;

2. generate a thumbnail

//by www.phpddt.comheader('Content-type: image/jpeg');$image = new Imagick('test.jpg');$image->thumbnailImage(50, 0);echo $image; 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.