Файл: test.masteram.us/obmen/inc/file/jpg.php
Строк: 43
<?
if (is_file(H."obmen/screens/128/$files[id].$ras"))
{
echo "<img src='/obmen/screens/128/$files[id].$ras' alt='Скрин...' /><br />n";
}
elseif (function_exists('imagecreatefromstring'))
{
$imgc=imagecreatefromstring(file_get_contents($file));
$img_x=imagesx($imgc);
$img_y=imagesy($imgc);
if ($img_x==$img_y)
{
$dstW=128; // ширина
$dstH=128; // высота
}
elseif ($img_x>$img_y)
{
$prop=$img_x/$img_y;
$dstW=128;
$dstH=ceil($dstW/$prop);
}
else
{
$prop=$img_y/$img_x;
$dstH=128;
$dstW=ceil($dstH/$prop);
}
$screen=imagecreatetruecolor($dstW, $dstH);
imagecopyresampled($screen, $imgc, 0, 0, 0, 0, $dstW, $dstH, $img_x, $img_y);
imagedestroy($imgc);
$screen=img_copyright($screen); // наложение копирайта
imagejpeg($screen,H."obmen/screens/128/$files[id].$ras",90);
imagedestroy($screen);
echo "<img src='/obmen/screens/128/$files[id].$ras' alt='Скрин...' /><br />n";
}
if ($files['opis']!=NULL)
{
echo "<div class='gmenu'>";
echo "<font color='red'>О файле:</font><br/> ";
echo trim(br(links($files['opis'])));
echo "</div>n";
}
echo "<div class='linechat'>";
echo "<img src='/style/icons/clock.png' alt='' class='icon'/> Добавлен: ".vremja($files['time'])."<br />n";
if (function_exists('getimagesize'))
{
$img_size=getimagesize($file);
echo "<img src='/style/obmen/018.png' alt='' class='icon'/> Разрешение: $img_size[0]*$img_size[1] пикс.<br />n";
}
echo "Скачано <font color='red'>$files[k_loads]</font> раз(а)<br />n";
echo "</div>n";
?>