<?php
header('Content-Type: image/png');
$im = imagecreatetruecolor(90, 25); // plotis/aukstis
if($_GET['img'] == "full") {
$ims = @imagecreatefrompng("full.png");
}else{
$ims = @imagecreatefrompng("fullv.png");
}
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($ims, 0, 0, 0, 0, $ims);
$text = substr($_GET['score'], 0,3);
$font = '../tahoma.ttf';
imagettftext($ims, 12, 0, 35, 35, $black, $font, $text);
imagepng($ims);
imagedestroy($ims);
?>