apt update  #更新软件源
apt install -y libwebp-dev libjpeg-dev libpng-dev libfreetype6-dev #安装各种库
docker-php-source extract #解压源码
cd /usr/src/php/ext/gd  #gd源码文件夹
docker-php-ext-configure gd --with-webp-dir=/usr/include/webp --with-jpeg-dir=/usr/include --with-png-dir=/usr/include --with-freetype-dir=/usr/include/freetype2   #准备编译
docker-php-ext-install gd   #编译安装
php -m | grep gd

  

相关文章:

  • 2022-12-23
  • 2021-12-02
  • 2021-09-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-25
  • 2021-06-08
猜你喜欢
  • 2022-02-01
  • 2022-12-23
  • 2021-08-30
  • 2022-01-06
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案