Şu şekilde ekli sitemde bunu ps ile hazırladım.

Php ile birşeyler denedim ama buna benzemedi alt satıra geçemedim bir türlü hatta şu şekilde oluştu;

Kullandığım kodlar;
<?php
header('Content-type: image/png');
$resim = imagecreatetruecolor(300, 200);
$beyaz = imagecolorallocate($resim, 255, 0, 10);
$siyah = imagecolorallocate($resim, 255, 255, 255);
imagefilledrectangle($resim, 0, 0, 399, 29, $beyaz);
$metin = 'celal deneme "\n" işte denmeme la';
$font = 'font/arial.ttf';
imagettftext($resim, 20, 0, 10, 20, $siyah, $font, $metin);
imagepng($resim);
imagedestroy($resim);
?>En baştaki resime nasıl benzetebilirim yardımcı olursanız sevinirim.