Jump to content

[SOLVED] gd2 problem


Asperon

Recommended Posts

ok, so I got the php_gd2.dll file from the windows binary and copied it into my ext folder for my php5  went to my .ini file and uncommented the extension=php_gd2.dll and ran this code

 

<?php

if(extension_loaded('gd'))
{
    echo 'GD is loaded!';

    if(function_exists('gd_info'))
    {
        echo ' Info: ';

        echo '<pre>' . print_r(gd_info(), true) . '</pre>';
    }
}
else
{
    echo 'GD is not loaded';
}

?>

 

and I get the Gd is not loaded echo, what am I doing wrong?

Link to comment
https://forums.phpfreaks.com/topic/65126-solved-gd2-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.