2 //=======================================================================
4 // Description: Check which version of GD is installed
6 // Author: Johan Persson (johanp@aditus.nu)
7 // Ver: $Id: chkgd.php,v 1.1 2002/10/13 22:17:45 aditus Exp $
9 // License: This code is released under QPL 1.0
10 // Copyright (C) 2001,2002 Johan Persson
11 //========================================================================
14 function CheckGDVersion($aInfo=true) {
16 phpinfo(8); // Just get the modules loaded
17 $a = ob_get_contents();
19 if( preg_match('/.*GD Version.*(1[0-9|\.]+).*/',$a,$m) ) {
22 elseif( preg_match('/.*GD Version.*(2[0-9|\.]+).*/',$a,$m) ) {
31 echo "You have GD 1 installed. Version: $v (or higher)\n";
33 echo "You have GD 2 installed. Version: $v (or higher)\n";
35 echo "You don't seem to have any GD support in your PHP installation";
41 echo "<b>Checking GD version ...</b>\n<p>";