install php gd extension linux code example
Example 1: install gd extension php ubuntu
#install gd extension, 7.4 replace it with your version
sudo apt-get install php7.4-gd
#check if installed
php -m | grep gd
#restart your web server
sudo service apache2 restart
or
sudo service nginx restart
Example 2: centos :Install or enable PHP gd extension.
yum install gd gd-devel php-gd
and then restart apache:
service httpd restart