saintx adlı üyeden alıntı: mesajı görüntüle
@celalyesil; buyrun hocam

<?php
	
	header("Content-Type: image/png; charset=UTF-8");
	
	$image = imagecreatetruecolor(300, 200);
	
	$white = imagecolorallocate($image, 255, 0, 10);
	
	$black = imagecolorallocate($image, 255, 255, 255);
	
	imagefilledrectangle($image, 0, 0, 399, 59, $white);
	
	$text = str_repeat(" ", 9)."saintx@r10\n".str_repeat(" ", 5)."WWW.R10.NET";
	
	$font = "/var/www/ARIAL.TTF";
	
	imagettftext($image, 20, 0, 10, 25, $black, $font, $text);
	
	imagepng($image);
	
	imagedestroy($image);
çıktımız;

Hocam bir soru daha sormak istiyorum peki bu siyahlığı nasıl kaybedebilirim? Birde yazı boyutunu nasıl ayarlarım?