<html>
<head>
</head>
<body>
<?php
include 'index3.php';
$imgcord = imagecreatefrompng("a.png");
$bqlo = ImageColorAllocate($imgcord,255,255,255);
$cherno = ImageColorAllocate($imgcord,0,0,0);
imageAlphaBlending($imgcord, true);
imageSaveAlpha($imgcord, true);
$font = 'Idea.ttf';
imagettftext($imgcord, 15, 0, 20, 490, $cherno, $font, "Ебаси якия $browser");
ImageString($imgcord,0,20,20,"Liniq 1",$cherno);
ImageString($imgcord,0,20,30,"Ебаси якия $browser",$cherno);
ImagePNG($imgcord,"pic.png");
ImageDestroy($imgcord);
?>
<img src="pic.png" border=0>
</body>
</html>