LONTE SHELL EDITION


Dashboard -*- SHOW INFO -*- HASH identify -*- Config -*- Jumping

You Are Here : /var/www/virtual/tvarditsa.org/
Upload File :
Current File : /var/www/virtual/tvarditsa.org/img100.php

<?php
 
$filename = "banners/".$_REQUEST[id].".jpg";


if (!file_exists($filename)) {

$filename = "nimg/nophoto.jpg";
}


header('Content-type: image/jpeg');

// Get new sizes
list($width, $height) = getimagesize($filename);

$perc = 1;



$newwidth = $width / $perc;
$newheight = $height / $perc;

// Load
$thumb = imagecreatetruecolor($newwidth, $newheight);
$source = imagecreatefromjpeg($filename);

// Resize
imagecopyresized($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);

// Output
imagejpeg($thumb, '', 80);
?>