<?
require_once("thumbnail.php");
if ($_GET['color'])
{
$bg = "0x" . substr($_GET['color'], 0, 6);
eval("\$bg = " . $bg . ";");
$thumb = new cThumbnail($_GET['file'], $_GET['w'], $_GET['h'], $bg);
}
else
$thumb = new cThumbnail($_GET['file'], $_GET['w'], $_GET['h']);
$thumb->setType('image/jpeg');
$thumb->output();
?>
|