Просмотр файла img.php

Размер файла: 1.85Kb
<?php
header('Pragma: no-cache');
if ($v!='in' && $v!='out'){exit;}
include("config.php");
if ($v=='out') {$max=mysql_fetch_row(mysql_query("SELECT `outcat` FROM `cat_stat` WHERE `id`='$id' ORDER BY `outcat` DESC LIMIT 1;"));}
else {$max=mysql_fetch_row(mysql_query("SELECT `incat` FROM `cat_stat` WHERE `id`='$id' ORDER BY `incat` DESC LIMIT 1;"));}

$img=ImageCreate(60,50); //40
$fon=imagecolorallocate($img, 0,0,0);
if ($v=='out') {$col=imagecolorallocate($img, 50,250,50);}
else {$col=imagecolorallocate($img, 250,50,50);}


$one=40/$max[0];

imageFill($img,65,15,$fon);
if ($v=='out') {imagettftext($img, 5, 0, 3 ,7, $col,'./font.ttf',"ИЗ КАТАЛОГА");}
else {imagettftext($img, 5, 0, 8 ,7, $col,'./font.ttf',"В КАТАЛОГ");}


if ($v=='out') {$selst=mysql_query("SELECT `outcat` FROM `cat_stat` WHERE `id`='$id' ORDER BY `number` ASC;");}
else {$selst=mysql_query("SELECT `incat` FROM `cat_stat` WHERE `id`='$id' ORDER BY `number` ASC;");}

$x=0;
while ($stat=mysql_fetch_array($selst)) {
$line=$one*$stat[0];
#----------------  --  --  ---  ----color--#
#----------------x1--y1--x2---y2----color--#          
imageLine($img, $x, 50, $x, 50-$line, $col);
imageLine($img, $x+1, 50, $x+1, 50-$line, $col);
$x=$x+2;
}

/*
imageLine($img, 0, 40, 0, 16, $lime);
imageLine($img, 1, 40, 1, 16, $lime);

imageLine($img, 1, 40, 1, 0, $lime);
imageLine($img, 2, 40, 2, 0, $lime);
*/
mysql_close($mysql);
Header("Content-type: image/png");
ImagePNG($img);
ImageDestroy($img);
/*
ВНИМАНИЕ!!! СКРИПТ РАЗРЕШЕННО РАСПРОСТРАНЯТЬ ТОЛЬКО АВТОРУ (GuT'y) СКРИПТА !!!
ПЕРЕПРОДАВАТЬ! ДАВАТЬ КОМУ ТО НА РЕДАКТИРОВАНИЕ! ПРОСТО ДАВАТЬ КАК ДРУГУ ИЛИ ВЫКЛАДЫВАТЬ НА ХАЛЯВУ - ЗАПЕРЕЩЕНО !!!
ИНАЧЕ БУДУТ ПРОБЛЕМЫ :-)))
*/
?>