<?php
    $breite = $zahl*10;
    $hoehe  = 30;
    $bild = imagecreate($breite, $hoehe);
    $farbe_balken   = imagecolorallocate($bild,   0,   0, 255);
    $farbe_schrift  = imagecolorallocate($bild, 255, 255, 255);
    ImageString($bild,3,$breite-16,8,$zahl,$farbe_schrift); 
    header("Content-Type: image/png");
    imagepng($bild);
?>