Codice PHP:
$nome = $_POST["nome"];
$clan = $_POST["clan"];
$sfondo = $_POST['sfondo'];
$sf = 'style1/urbanterror.png';
$img = imageCreateFromPng($sf);
imagealphablending( $img, true );
imagesavealpha( $img, true );
$textColor = imagecolorallocate($img, 27, 31, 37);
imagettftext($img, 18, 0, 73, 44, $textColor, 'style1/CakarAyam.ttf', 'Nick: '.$nome);
imagettftext($img, 18, 0, 73, 72, $textColor, 'style1/CakarAyam.ttf', 'Clan: '.$clan);
$textColor = imagecolorallocate($img, 124, 137, 145);
imagettftext($img, 18, 0, 71, 42, $textColor, 'style1/CakarAyam.ttf', 'Nick: '.$nome);
imagettftext($img, 18, 0, 71, 70, $textColor, 'style1/CakarAyam.ttf', 'Clan: '.$clan);
$textColor = imagecolorallocate($img, 61, 68, 77);
imagettftext($img, 18, 0, 72, 43, $textColor, 'style1/CakarAyam.ttf', 'Nick: '.$nome);
imagettftext($img, 18, 0, 72, 71, $textColor, 'style1/CakarAyam.ttf', 'Clan: '.$clan);
$additional_numbers = rand(1000,9999);
$clan_alfan = preg_replace("/[^a-zA-Z0-9]/", "", $clan);
$nome_alfan = preg_replace("/[^a-zA-Z0-9]/", "", $nome);
imagePng($img,"temp/".$clan_alfan.$nome_alfan.$additional_numbers.".png",0);
echo "<br><img src='temp/".$clan_alfan.$nome_alfan.$additional_numbers.".png' alt='La tua sign'><br>";
Il codice del testo è ripetuto tre volte per dare l'effetto luce\ombra attorno al testo che lo fa sembrare maggiormente "impresso" (infatti da quella generata in locale l'effetto c'è e si vede bene)..