78 global $db, $conf, $langs, $user;
81 $example = $generator->getExample();
82 $img = imagecreate(80, 32);
84 return "Problem with GD creation";
86 $background_color = imagecolorallocate($img, 250, 250, 250);
87 $ecriture_color = imagecolorallocate($img, 0, 0, 0);
88 imagestring($img, 4, 15, 8, $example, $ecriture_color);
92 $image_data = ob_get_contents();
95 return '<img class="inline-block valignmiddle" src="data:image/png;base64,' . base64_encode($image_data) .
'" border="0" width="80" height="32" />';