Файл: resize.php
Строк: 12
<?php
require 'incfiles/img.php';
if (!file_exists($_GET['img']))
{
$file = 'images/deleted.png';
$img = new img($file);
$img
->img_down()
->resize(abs($_GET['width']), abs($_GET['height']))
->print_img(pathinfo($file, PATHINFO_EXTENSION));
}
elseif (isset($_GET['img'], $_GET['width'], $_GET['height']) && $_GET['width'] && $_GET['width'] > 0 && $_GET['width'] < 500 && $_GET['height'] < 500) {
$file = @htmlspecialchars($_GET['img']);
#if (!file_exists($file)) exit('Такого файла нет');
$img = new img($file);
$img
->img_down()
->resize(abs($_GET['width']), abs($_GET['height']))
->print_img(pathinfo($file, PATHINFO_EXTENSION));
}
else
{
header('Location: /');
die();
}
?>