Файл: www/pic/img.php
Строк: 182
<?php
include '../config.php';
$id=intval($_GET['id']);
$info=mysql_fetch_array(mysql_query("SELECT * FROM `pic_files` WHERE `id`='$id'"));
$path='loads/'.$info['file'];
switch($_GET['rv']){
case 1:
$pinfo=pathinfo($path);
if($pinfo['extension']=='jpg'||$pinfo['extension']=='jpeg'||$pinfo['extension']=='JPG') $img = imagecreatefromjpeg($path);
elseif ($pinfo['extension']=='png'||$pinfo['extension']=='PNG') $img = imagecreatefrompng($path);
elseif ($pinfo['extension']=='gif'||$pinfo['extension']=='GIF') $img = imagecreatefromgif($path);
$img2=imagecreatetruecolor(128,128);
$x=imagesx($img);
$y=imagesy($img);
imagecopyresampled($img2, $img, 0, 0, 0, 0, 128, 128, $x, $y);
header ("Content-type: image/png");
imagepng($img2);
imagedestroy($img);
imagedestroy($img2);
break;
case 2:
$pinfo=pathinfo($path);
if($pinfo['extension']=='jpg'||$pinfo['extension']=='jpeg'||$pinfo['extension']=='JPG') $img = imagecreatefromjpeg($path);
elseif ($pinfo['extension']=='png'||$pinfo['extension']=='PNG') $img = imagecreatefrompng($path);
elseif ($pinfo['extension']=='gif'||$pinfo['extension']=='GIF') $img = imagecreatefromgif($path);
$img2=imagecreatetruecolor(128,160);
$x=imagesx($img);
$y=imagesy($img);
imagecopyresampled($img2, $img, 0, 0, 0, 0, 128, 160, $x, $y);
header ("Content-type: image/png");
imagepng($img2);
imagedestroy($img);
imagedestroy($img2);
break;
case 3:
$pinfo=pathinfo($path);
if($pinfo['extension']=='jpg'||$pinfo['extension']=='jpeg'||$pinfo['extension']=='JPG') $img = imagecreatefromjpeg($path);
elseif ($pinfo['extension']=='png'||$pinfo['extension']=='PNG') $img = imagecreatefrompng($path);
elseif ($pinfo['extension']=='gif'||$pinfo['extension']=='GIF') $img = imagecreatefromgif($path);
$img2=imagecreatetruecolor(176,208);
$x=imagesx($img);
$y=imagesy($img);
imagecopyresampled($img2, $img, 0, 0, 0, 0, 176, 208, $x, $y);
header ("Content-type: image/png");
imagepng($img2);
imagedestroy($img);
imagedestroy($img2);
break;
case 4:
$pinfo=pathinfo($path);
if($pinfo['extension']=='jpg'||$pinfo['extension']=='jpeg'||$pinfo['extension']=='JPG') $img = imagecreatefromjpeg($path);
elseif ($pinfo['extension']=='png'||$pinfo['extension']=='PNG') $img = imagecreatefrompng($path);
elseif ($pinfo['extension']=='gif'||$pinfo['extension']=='GIF') $img = imagecreatefromgif($path);
$img2=imagecreatetruecolor(176,220);
$x=imagesx($img);
$y=imagesy($img);
imagecopyresampled($img2, $img, 0, 0, 0, 0, 176, 220, $x, $y);
header ("Content-type: image/png");
imagepng($img2);
imagedestroy($img);
imagedestroy($img2);
break;
case 5:
$pinfo=pathinfo($path);
if($pinfo['extension']=='jpg'||$pinfo['extension']=='jpeg'||$pinfo['extension']=='JPG') $img = imagecreatefromjpeg($path);
elseif ($pinfo['extension']=='png'||$pinfo['extension']=='PNG') $img = imagecreatefrompng($path);
elseif ($pinfo['extension']=='gif'||$pinfo['extension']=='GIF') $img = imagecreatefromgif($path);
$img2=imagecreatetruecolor(208,208);
$x=imagesx($img);
$y=imagesy($img);
imagecopyresampled($img2, $img, 0, 0, 0, 0, 208, 208, $x, $y);
header ("Content-type: image/png");
imagepng($img2);
imagedestroy($img);
imagedestroy($img2);
break;
case 6:
$pinfo=pathinfo($path);
if($pinfo['extension']=='jpg'||$pinfo['extension']=='jpeg'||$pinfo['extension']=='JPG') $img = imagecreatefromjpeg($path);
elseif ($pinfo['extension']=='png'||$pinfo['extension']=='PNG') $img = imagecreatefrompng($path);
elseif ($pinfo['extension']=='gif'||$pinfo['extension']=='GIF') $img = imagecreatefromgif($path);
$img2=imagecreatetruecolor(240,320);
$x=imagesx($img);
$y=imagesy($img);
imagecopyresampled($img2, $img, 0, 0, 0, 0, 240, 320, $x, $y);
header ("Content-type: image/png");
imagepng($img2);
imagedestroy($img);
imagedestroy($img2);
break;
}
mysql_query("UPDATE `pic_files` SET `time_s`='$time', `down`=`down`+1 WHERE `id`='$id'");
?>