Файл: modules/obmen/inc/file/gif.php
Строк: 17
<?php
if (!is_file(LF_PATH . '.GIF') && $imgc = @imagecreatefromgif(LF_PATH)) {
$img_x = imagesx($imgc);
$img_y = imagesy($imgc);
$x_ratio = SCR_WIDTH / $img_x;
if ($img_x <= SCR_WIDTH) {
$dstW = $img_x;
$dstH = $img_y;
} else {
$dstH = ceil($x_ratio * $img_y);
$dstW = SCR_WIDTH;
}
$screen = imagecreatetruecolor($dstW, $dstH);
imagecopyresampled($screen, $imgc, 0, 0, 0, 0, $dstW, $dstH, $img_x, $img_y);
imagedestroy($imgc);
#$screen=img_copyright($screen); // наложение копирайта
imagegif($screen, LF_PATH . '.GIF');
imagedestroy($screen);
}
include 'inc/screens.php';
echo "<div class = 'razd'>";
if ($file_id['opis']) {
echo "Описание: ";
echo trim(text::br(links($file_id['opis'])));
echo "<br />n";
}
if (function_exists('getimagesize')) {
$img_size = getimagesize($file);
echo "Разрешение: $img_size[0]*$img_size[1] пикс.<br />n";
}
echo "Добавлен: " . date::time($file_id['time']) . "<br />n";
echo "Размер: " . size_file($size) . "<br />n";
echo "</div>";