Docker + PHP7 + GD的麻烦导致"调用未定义的函数imagecreatefromjpeg()"

时间:2017-11-14 17:50:04

标签: php docker gd php-gd

尝试使用imagecreatefromjpeg使用此Dockerfile创建图像时,我遇到了麻烦:

FROM  php:7.1-apache

RUN apt-get update && \
    apt-get install -y -qq git \
        libjpeg62-turbo-dev \
        apt-transport-https \
        libfreetype6-dev \
        libmcrypt-dev \
        libpng12-dev \
        libssl-dev \
        zip unzip \
        nodejs \
        npm \
        wget \
        vim

RUN pecl install redis && docker-php-ext-enable redis
RUN docker-php-ext-install -j$(nproc) iconv mcrypt zip pdo pdo_mysql gd bcmath

COPY ./containers/yii.conf /etc/apache2/sites-available/000-default.conf

RUN for mod in rewrite headers; do a2enmod $mod; done && service apache2 restart

WORKDIR /var/www/html/

GD已正确安装(libjpeg也出现在php -iphpinfo()),但imagecreatefromjpeg不起作用,我不知道原因。

我还试图apt install libjpeg-dev libpng-dev libfreetype6-dev尝试〜强制〜重新安装(或重新配置)但似乎没有成功(是的,我也重启容器)。

root@e8db647c96c4:/var/www/html# php -i | grep -i GD
/usr/local/etc/php/conf.d/docker-php-ext-gd.ini,
gd
GD Support => enabled
GD Version => bundled (2.1.0 compatible)
gd.jpeg_ignore_warning => 1 => 1
root@e8db647c96c4:/var/www/html# 
root@e8db647c96c4:/var/www/html# docker-php-ext-enable gd

warning: gd (gd.so) is already loaded!

root@e8db647c96c4:/var/www/html# 

我已经尝试apt install libgd2-xpm-dev*,显然它并没有解决问题。

解决

我不想放

RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/
RUN docker-php-ext-install -j$(nproc) gd

进入我的Dockerfile。

完全修订的Dockerfile:

FROM  php:7.1-apache

RUN apt-get update && \
    apt-get install -y -qq git \
        libjpeg62-turbo-dev \
        apt-transport-https \
        libfreetype6-dev \
        libmcrypt-dev \
        libpng12-dev \
        libssl-dev \
        zip unzip \
        nodejs \
        npm \
        wget \
        vim

RUN pecl install redis && docker-php-ext-enable redis
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/
RUN docker-php-ext-install -j$(nproc) iconv mcrypt zip pdo pdo_mysql gd bcmath

COPY ./containers/yii.conf /etc/apache2/sites-available/000-default.conf

RUN for mod in rewrite headers; do a2enmod $mod; done && service apache2 restart

WORKDIR /var/www/html/

3 个答案:

答案 0 :(得分:14)

PHP 7.4(高山)

如果任何人都在努力使用 PHP 7.4 在GD中启用JPEG支持,这是我必须要做的,才能使用imagecreatefromjpeg()函数。 我的示例基于Alpine 3.10,如果您使用其他发行版,请根据需要进行调整。

首先安装依赖项,在我的情况下,除了JPEG,我需要支持PNG文件。

apk add jpeg-dev libpng-dev

此后,我们可以运行docker-php-ext-configure命令来配置具有JPEG支持的gd。请注意,标志--with-jpeg-dir已更改为--with-jpeg,我们不需要提供标志来启用PNG。您可以在GD部分的PHP 7.4 Changelog中阅读更多内容。

docker-php-ext-configure gd --with-jpeg

此后,立即运行docker-php-ext-install安装GD本身。

docker-php-ext-install -j$(nproc) gd

完整示例

FROM php:7.4-fpm-alpine3.10

RUN apk add jpeg-dev libpng-dev \
    && docker-php-ext-configure gd --with-jpeg \
    && docker-php-ext-install -j$(nproc) gd

答案 1 :(得分:4)

对于PHP 5.6

FROM php:5.6-apache

RUN apt-get update && apt-get install -y \ 
libfreetype6-dev libjpeg62-turbo-dev \ 
libgd-dev libpng12-dev
RUN docker-php-ext-configure gd \ 
--with-freetype-dir=/usr/include/ \ 
--with-jpeg-dir=/usr/include/
RUN docker-php-ext-install gd

如果仍然无法正常工作,可以重新安装容器。

docker rm <container id> 
docker-compose build --pull
docker-compose up

答案 2 :(得分:0)

更新版本 PHP 7.4 + Apache:

Dockerfile

FROM php:7.4-apache

RUN apt-get update -y && apt-get install -y sendmail libpng-dev libfreetype6-dev libjpeg62-turbo-dev libgd-dev libpng-dev

RUN docker-php-ext-install pdo pdo_mysql 

RUN docker-php-ext-configure gd \ 
--with-freetype=/usr/include/ \ 
--with-jpeg=/usr/include/

RUN docker-php-ext-install gd

...