<?php
if (isset($_GET['text'])) {
include "jpgraph/src/jpgraph.php";
include "jpgraph/src/jpgraph_canvas.php";
 
$g = new CanvasGraph(312,180,'auto');
$g->SetBackgroundImage("visu.jpg",BGIMG_CENTER); 
$g->InitFrame();
$txt=$_GET['text'];
$t = new Text($txt,220,40);
$t->SetFont(FF_VERA,FS_BOLD,10);
$t->Align('left','top');
$t->ParagraphAlign('center');
$t->Stroke($g->img);
$g->Stroke();

}
else {
header("Content-type: text/html");

echo "<body><a href='visu.php?text=22.48'>visu.php?text=22.48</a></body>\n";
}
?>