<?php 
error_reporting
(E_ALL);
header("Content-type: image/png");
//die('Hi');


//Parameter
$cnb$_GET['cnb'];

//bild aus datei
$img_bg imagecreatefrompng("grafiken/img.png");

// Farben festlegen
$color_circle imagecolorallocate($img_bg12800);
$color_text ImageColorAllocate ($img_bg255255255);

//Elipse
//mit folgenden Kordinaten (x1, y1, x2, y2, Farbe);
imagefilledellipse($img_bg302416,16$color_circle);

//Ziffer
ImageString ($img_bg72717$cnb$color_text);

//Ausgabe des Bildes
imagepng($img_bg);
?>