23-05-2011, 01:28
Kod
Nadal nie działa ;f
Kod:
<?php
header("Content-type: image/png");
$obraz = imagecreatefrompng("1.png");
$czcionka_biala = imagecolorallocate($obraz, 255, 255, 255);
$czcionka_czarna = imagecolorallocate($obraz, 0, 0, 0);
$tekst = $_GET['tekst'];
putenv ( 'GDFONTPATH=' . realpath ( '.' ));
$font = 'dupa.ttf';
imagettftext($obraz, 11, 0, 5, 14, $czcionka_biala, $font, $tekst);
imagepng($obraz);
imagedestroy($obraz);
?>