Файл: shop/screen_img.php
Строк: 16
<?php
require'../shaxty.php'; // waphp.ru - закрытый клуб вап мастеров!
error_reporting(E_PARSE);
$id=intval($_SERVER['QUERY_STRING']);
if(isset($_GET['id']))$id =intval($_GET['id']);
$a = mysql_fetch_array(mysql_query("select * from shop_file_screen where `id` = '".$id."';"));
$img = 'files_screen/'.$a['screen'].'';
$W = 100; // ширина картинки
$H = 100; // высота картинки
$getim = getimagesize($img);
if ($getim[2] == 1 || $getim[2] == 2 || $getim[2] == 3) {
if ($getim[2] == 1)$old = imagecreatefromgif($img);
elseif ($getim[2] == 2) $old = imagecreatefromjpeg($img);
elseif ($getim[2] == 3)$old = imagecreatefrompng($img);
{
$wn = imageSX($old);
$hn = imageSY($old);
$new = imageCreateTrueColor($W, $H);
imageCopyResampled($new, $old, 0, 0, 0, 0, $W, $H, $wn, $hn);
imageJpeg($new,null,100);
}
}
?>