laradock 中加入 webp 文件支持

默认的laradock有开启gd库,但是没有开启webp的图片支持
操作步骤如下:

打开laradock目录,找到php-fpm目录
编辑Dockerfile文件

laradock 中加入webp文件支持
laradock 中加入webp文件支持

代码如下:

RUN docker-php-ext-install pcntl
RUN apt-get install -y libwebp-dev
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr &&  docker-php-ext-install gd

重新build php-fpm容器

docker-compose build php-fpm

使用phpinfo();或者gd_info()查看你是否已经添加上了webp的支持吧!

你可能感兴趣的:(laradock 中加入 webp 文件支持)