PHP kodu aşağıda bir dinamik olarak oluşturulan görüntü olarak metin üretir, nasıl ben sadece metin olarak büyük olması görüntüyü elde etmek mümkün olacaktır? Teşekkürler.
<?php
header('Content-Type: image/jpeg');
$text='Test';
$img = imageCreate(200,200);
imagecolorallocate($img, 255, 255, 255);
$textColor = imagecolorallocate($img, 0, 0, 0);
imagefttext($img, 15, 0, 0, 55, $textColor, 'bgtbt.ttf', $text);
imagejpeg($img);
imagedestroy($img);
?>
GÜNCELLEME 1: Ben orijinal poster örneği ile burada cevabını buldu - http://stackoverflow.com/questions/1097583/creating-image-from-text-in-php-how-can-i-make-multiline
GÜNCELLEME 2: Martin GEISLER versiyonu da iyi çalışıyor