1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00
php-e107/e107_images/thumb.php

63 lines
1.5 KiB
PHP
Raw Normal View History

2006-12-02 04:36:16 +00:00
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| <EFBFBD>Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_images/thumb.php,v $
| $Revision: 1.1.1.1 $
| $Date: 2006-12-02 04:34:25 $
| $Author: mcfly_e107 $
+----------------------------------------------------------------------------+
*/
/*
Usage: simply replace your <img src='filename.jpg'
with
<img src='".e_IMAGE."thumb.php?filename.jpg+size"' />
or
<img src='".e_IMAGE."thumb.php?<full path to file>/filename.jpg+size"' />
eg <img src='".e_IMAGE."thumb.php?home/images/myfilename.jpg+100)"' />
*/
require_once("../class2.php");
require_once(e_HANDLER."resize_handler.php");
// var 3.
// 1= newspost images/preview
// 2=
if (e_QUERY){
$tmp = explode("+",rawurldecode(e_QUERY));
if(strpos($tmp[0], "/") === 0 || strpos($tmp[0], ":") >= 1){
$source = $tmp[0];
}else{
$source = "../".str_replace("../","",$tmp[0]);
}
$newsize = $tmp[1];
if(!file_exists(e_IMAGE."newspost_images/preview/preview_".basename($source))){
if(!resize_image($source, e_IMAGE."newspost_images/preview/preview_".basename($source), $newsize)){
echo "Couldn't find: ".$source;
}
}
header("Content-type: image/jpg");
$imagedata = file_get_contents(e_IMAGE."newspost_images/preview/preview_".basename($source));
echo $imagedata;
exit;
}
?>