http://matias-test.ugu.pl/iks/gene/ - tu nie działa.
<?php
$rysunek = ImageCreateFromPng("sygna.png");
$nickkolor = ImageColorAllocate($rysunek, 24, 116, 205);
$levelkolor = ImageColorAllocate($rysunek, 28, 134, 238);
$krolestwokolor = ImageColorAllocate($rysunek, 0, 191, 255);
$gildiakolor = ImageColorAllocate($rysunek, 0, 191, 255);
$font = "./arial.ttf";
$x = "30";
$y = "200";
$x1 = "160";
$y1 = "30";
$x2 = "190";
$y2 = "50";
$x3 = "220";
$y3 = "70";
$nachylenie = "1";
$rozmiar = "3";
$rozmiar1a = "10";
$rozmiar1 = "15";
$rozmiar3 = "17";
$rozmiar2 = "20";
$nick = $_POST['nick'];
$level = $_POST['level'];
$krolestwo = $_POST['krolestwo'];
$gildia = $_POST['gildia'];
imagettftext($rysunek, "$rozmiar3", "90", "$x", "$y", $nickkolor, $font, "Nick: $nick");
imagettftext($rysunek, "$rozmiar2", "$nachylenie", "$x1", "$y1", $levelkolor, $font, "Level: $level");
imagettftext($rysunek, "$rozmiar1", "$nachylenie", "$x2", "$y2", $krolestwokolor, $font, "Krolestwo: $krolestwo");
imagettftext($rysunek, "$rozmiar1a", "$nachylenie", "$x3", "$y3", $gildiakolor, $font, "Gildia: $gildia");
header('Content-Disposition: attachment; filename="sygna.png"'); imagePNG($rysunek);
?>
http://matias-test.ugu.pl/iks - tu działa, bierze czcionkę z FTP. // i teraz też przestało działać, zobacze na innym hostingu

// Na cba.pl otwiera obrazek.. sam obrazek. Czysty plik "sygna.png" bez tego tekstu ze zmiennych $level itd.
http://cs-reklamuj.cba.pl/gene<?php
$rysunek = ImageCreateFromPng("sygnatura.png");
$bialy = ImageColorAllocate($rysunek, 255, 255, 255);
$font = "./Arial.ttf";
$x = $_POST['x'];
$y = $_POST['y'];
$nachylenie = $_POST['nachylenie'];
$rozmiar = $_POST['rozmiar'];
$nick = $_POST['nick'];
ImageTTFText($rysunek, "$rozmiar", "$nachylenie", "$x", "$y", $bialy, "$font", "$nick");
header("Content-type: image/png"); ImagePng($rysunek);
?>