如何启用 PHP 的 JPEG 支持?

如何启用 PHP 的 JPEG 支持?

Configure Command没有提到 jpg 或 gif/png,但我可以gif/png support在输出中看到phpinfo()

我使用 构建了 PHP --with-gd,但只有GIF SupportPNG Support在 phpinfo() 的输出中,我该如何启用JPEG Support

更新

我在编译时遇到了这个问题:

Sorry, I cannot run apxs.  Possible reasons follow:

1. Perl is not installed
2. apxs was not found. Try to pass the path using --with-apxs2=/path/to/apxs
3. Apache was not built using --enable-so (the apxs usage page is displayed)

The output of /usr/local/apache2/bin/apxs follows:
cannot open /usr/local/apache2/build/config_vars.mk: No such file or directory at /usr/local/apache2/bin/apxs line 218.

我现在应该怎么做?

答案1

首先进入 PHP 源代码目录。然后

make clean

然后使用 JPEG 支持进行编译(将其添加到您已经使用的所有其他编译选项中):

--with-jpeg-dir=<put path to jpeg library here>

例如,如果您的 jpeg 库位于:

/usr/lib/libjpeg.so

使用:

--with-jpeg-dir=/usr/lib

相关内容