<?
$dosya = "krl.jpg";
$uzanti = explode(".",$dosya);
$uzanti = $uzanti[count($uzanti)-1];
if($uzanti=="png"){
header("Content-type: image/png");
}else if($uzanti=="jpg" || $uzanti=="jpeg"){
header("Content-type: image/jpeg");
}else if($uzanti=="gif"){
header("Content-type: image/gif");
}else{
echo 'Böyle Bir Uzantı Yok';
exit();
}
$metin = "Emrah Ülker";
$resim = imagecreatefrompng("$dosya");
$turuncu = imagecolorallocate($resim, 220, 210, 60);
$px = (imagesx($resim) - 7.5 * strlen($metin)) / 2;
imagestring($resim, 2, $px, 9, $metin, $turuncu);
imagejpeg($resim);
imagedestroy($resim);
?>
Böyle Bİşey OLması Lazım Sanırım
__________________ A |