Hi,
how can I find if GD2 is installed to be used with php ?
Solved : find if GD2 is installed
-
mister_v
- Posts: 203
- Joined: Thu Mar 04, 2010 9:19 pm
Solved : find if GD2 is installed
Last edited by mister_v on Thu Jun 10, 2021 8:46 am, edited 1 time in total.
-
chris
- Site Admin
- Posts: 216
- Joined: Mon Jul 21, 2008 9:52 am
Re: find if GD2 is installed
You can find ii with the command ( in shell)
of with the following code in a php/html-file.
It should be listed, if installed.
Code: Select all
php -i | grep 'GD\|ImageMagick'Code: Select all
<?php phpinfo(); ?>