<?php
 
$path = $_GET['path'];
 
$width = (int) $_GET['width'];
 
if (empty($width)) $width = 100;
 
$height = (int) $_GET['height'];
 
if (empty($height)) $height = 100;
 
require_once ('images.class.php');
 
$img = new images($path);
 
$img->resize($width, $height);
 
$img->output();
 
?>
 
 |