Файл: minichat_by_KoT/minichat_by_KoT/img/img.php
Строк: 39
<?php
##########################################
# ~ Разработка отдельных модулей ~~~~~~~ #
# ~ и написание скриптов на php (c)KoT ~ #
# ~ ICQ: 7675072 ~~~~~~~~~~~~~~~~~~~~~~~ #
# ~ Site: 4atlove.ru ~~~~~~~~~~~~~~~~~~~ #
# ~ E-mail: notefree@bk.ru ~~~~~~~~~~~~~ #
##########################################
session_start();
Header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
Header("Cache-Control: no-cache, must-revalidate");
Header("Pragma: no-cache");
Header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT");
$word = intval($_SESSION['reg_cod']);
$word = "$word";
$img = imagecreatefrompng('img.png');
$sz = getimagesize('img.png');
$size = 14;
$font = 'comic.ttf';
for($i = 0;$i < 4; $i++) {
$rndX = mt_rand(0, $sz[0]);
$rndX1 = mt_rand(0, $sz[0]);
$rndY = mt_rand(0, $sz[1]);
$rndY1 = mt_rand(0, $sz[1]);
$rndX2 = mt_rand(0, $sz[0]);
$rndX3 = mt_rand(0, $sz[0]);
$rndY2 = mt_rand(0, $sz[1]);
$rndY3 = mt_rand(0, $sz[1]);
$color = mt_rand(1000, 9999999);
}
for($i = 0;$i < 4; $i++) {
$angle = mt_rand (-20, 20);
if ($i == 0)$x = 5;
else $x = $x + 12;
$y = 18;
$color = mt_rand(1000, 9999999);
imagettftext($img, $size, $angle, $x, $y, $color, $font, $word[$i]);
}
$im = imagecreatetruecolor(50, 20);
imagecopyresampled($im, $img, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
header("Content-type: image/png");
imagegif($img);
?>