specics | bonjour,
je cherche a faire des graphiques avec php et pour ça j'ai télécharger la library GD2 et artichow.
je me suis fait un petit programme simple censé m'afficher un graph :
Code :
- <?php
- require_once "Artichow/LinePlot.class.php";
- $graph = new Graph(400, 400);
- $graph->setAntiAliasing(TRUE);
-
- $values = array(1, 4, 5, -2.5, 3);
- $plot = new LinePlot($values);
- $plot->setBackgroundGradient(
- new LinearGradient(
- new Color(210, 210, 210),
- new Color(250, 250, 250),
- 0
- )
- );
- $plot->yAxis->setLabelPrecision(1);
- $plot->setSpace(5, 5, NULL, NULL);
-
- $graph->add($plot);
- $graph->draw();
- ?>
|
et j'ai droit à:
Spoiler :
PHP Fatal error: You must compile PHP with GD2 support to use Artichow in D:\Stats\stats\Artichow\Image.class.php on line 15 |
quelqu'un pourrait-il m'éclaircir sur le pourquoi du comment ? |