so gehts immer noch nicht.
<?php
$tmp = $_GET['text'];
$text = $tmp;
$ttfsize = 20;
header('Content-type: image/png');
$ttf = "./ttf/metin2.ttf"; //Schriftart
$bbox = imagettfbbox($ttfsize, 0, $ttf, $text);
$width = $bbox[4] - $bbox[6] + 5;
$height = $bbox[1] -...