Home  >  Article  >  Backend Development  >  php+ImageMagick+imagick API Configuration Guide_PHP Tutorial

php+ImageMagick+imagick API Configuration Guide_PHP Tutorial

WBOY
WBOYOriginal
2016-07-13 17:32:541320browse

First download the relevant software:

ImageMagick 5.5.7
ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-5.5.7-15.tar.gz

imagick:A native php(as the current mainstream development language)-extension to ImageMagick
wget http://pecl.php(as the current mainstream development language).net/get/imagick-0.9.8.tgz


Why don’t you know what ImageMagick is? You might as well go here to see the charm of ImageMagick
Use ImageMagick to flip, zoom, and rotate And more operations
ImageMagick learning


How about ImageMagick, which is more powerful than GD? Well, let’s install it.

What we are going to talk about today is to directly make php (as the current mainstream development language) support ImageMagick instead of using the ImageMagick command line for graphics conversion.

tar ImageMagick-5.5.7-15.tar.gz
cd ImageMagick-5.5.7

./configure
LDFLAGS="-L/usr/lib" CPPFLAGS ="-I/usr/include"
--prefix=/usr/local/ImageMagick
--enable-shared
--enable-lzw
make
make install

For more parameters, please see the compilation help.

By the way, I forgot to tell you that it is best not to use the ImageMagick-devel package that comes with redhat. It is better to compile it yourself, otherwise you will be compiling php (as the current mainstream development language ) will be killed, I said it beforehand, if there is a problem, don’t blame me for not saying anything:)

To join ImageMagick for php(as the current mainstream development language ) API. Then we need to compile php(as the current mainstream development language) twice, php(as the current mainstream development language)After the first compilation, our compilation API will be generated The required php(as the current mainstream development language)ize this program. I won’t talk about the first compilation, it’s basically the same as the second compilation.

In the source code directory 1 of php
(as the current mainstream development language)
. mkdir ext/imagick
2. Then unzip imagick-0.9.8.tgz to the ext/imagick directory
3. Run the command php(as the current mainstream development language)ize
4. cd php(as the current mainstream development language)source code root directory
5. rm configure
6. ./buildconf --force #It seems that not adding --force will prevent the configure file from being regenerated

The following is the second compilation of php(as the current mainstream development language)


./configure --prefix=/usr/local/php(as the current mainstream development language)
--with-MySQL(matched with PHP The best combination)=/usr/local/MySQL(The best combination with PHP)
--with-imagick=/usr/local/ImageMagick
-- with-apxs=/usr/local/apache(the most popular WEB server platform on Unix platform)/bin/apxs
make
make install

As for php (As the current mainstream development language) You can add other parameters of appropriately.

Okay, write a test program for php(as the current mainstream development language)

(as the current mainstream development language) )
php(as the current mainstream development language)info();
?>

Congratulations, the installation is successful, go and enjoy ImageMagick Huge features

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/508658.htmlTechArticleFirst download the relevant software: ImageMagick 5.5.7 ftp://ftp.imagemagick.org/pub/ImageMagick /ImageMagick-5.5.7-15.tar.gz imagick:A native php (as the current mainstream development language) -exte...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn