Link to home
Start Free TrialLog in
Avatar of snehal2310
snehal2310

asked on

using jpgraphs in php

im begginer in php and i want to use jpgraph , i have done necessary changes in ini file ( uncommenting dll and all that) but still im getting error "Call to undefined function:  imagecreate() " where the code contains just --
"header ("Content-type: image/png");
$im = imagecreate (300, 300);
$white = imagecolorallocate ($im,255,255,255);
$blue = imagecolorallocate ($im,0,0,255);
imagestring ($im, 5, 0, 0, "first graph", $blue);"
can anybody help me out of this?? thanks in advance
Avatar of snehal2310
snehal2310

ASKER

what else i'll have to do??
ASKER CERTIFIED SOLUTION
Avatar of nsanden
nsanden

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial