Файл: world-faces.ru/world-faces.ru/photo.php
Строк: 34
<?php
include_once 'sys/inc/start.php';
include_once 'sys/inc/sess.php';
include_once 'sys/inc/home.php';
include_once 'sys/inc/settings.php';
include_once 'sys/inc/db_connect.php';
include_once 'sys/inc/ipua.php';
include_once 'sys/inc/fnc.php';
if($_GET['typ'] == 1) $path = H.'files/gallery/foto/';
if (isset($_GET['img'], $_GET['width'], $_GET['height']) && $_GET['width'] && $_GET['width'] < 1200 && $_GET['height'] < 1200) {
if (file_exists($path.$_GET['img'].'.gif')) $type = '.gif';
elseif (file_exists($path.$_GET['img'].'.jpg')) $type = '.jpg';
elseif (file_exists($path.$_GET['img'].'.jpeg')) $type = '.jpeg';
elseif (file_exists($path.$_GET['img'].'.png')) $type = '.png';
$file = $path.$_GET['img'].$type;
if(!file_exists($file)) exit('Такого файла нет '.$file);
$img = new photo($file);
$img
->img_down()
->resize((int)$_GET['width'], (int)$_GET['height'])
->print_img(pathinfo($file, PATHINFO_EXTENSION));
} else echo 'Не валидные параметры изображения';
?>