can anyone teach me ? how i know if i installed the GD and the GD is working properly?
i've download the GD and installed... from
http://gnuwin32.sourceforge.net/packages/gd.htm
i downloaded the setup file, i've restart my computer...
but y it is not working? is that i've to change oher configuration?
i'm using winXP's IIS and php 4.3.6...
how to know if GD installed?
Moderator: General Moderators
use phpinfo() and see if it shows up on the page, if it does, google for [google]GD tutorials[/google] and paste the code and test it out. if its a no go then google for [google]install GD on IIS[/google] or check this out.
http://www.livejournal.com/community/ph ... /1852.html
http://www.livejournal.com/community/ph ... /1852.html
aisk... i downloaded... almost everything~~~ i still can't find the php_gd2.all~~~qads wrote:http://www.boutell.com/gd/
damn!.. i goin' to insane...
anyone? can u send me?
is that means if i hv the dll... then i can draw, convert to thumbnail??
tq
-
malcolmboston
- DevNet Resident
- Posts: 1826
- Joined: Tue Nov 18, 2003 1:09 pm
- Location: Middlesbrough, UK
This will tell you if you have GD loaded
Code: Select all
<?php
if (extension_loaded("gd"))
{
echo "GD found";
}
else
{
echo "GD not found.
}
?>