1f62ea8a1Sandi<?php 2f62ea8a1Sandi/** 3f62ea8a1Sandi * DokuWiki media passthrough file 4f62ea8a1Sandi * 5f62ea8a1Sandi * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6f62ea8a1Sandi * @author Andreas Gohr <andi@splitbrain.org> 7f62ea8a1Sandi */ 8f62ea8a1Sandi 9d0a27cb0SAndreas Gohr if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../'); 103138b5c7SAndreas Gohr define('DOKU_DISABLE_GZIP_OUTPUT', 1); 11f62ea8a1Sandi require_once(DOKU_INC.'inc/init.php'); 12f62ea8a1Sandi require_once(DOKU_INC.'inc/common.php'); 13f62ea8a1Sandi require_once(DOKU_INC.'inc/pageutils.php'); 14f62ea8a1Sandi require_once(DOKU_INC.'inc/confutils.php'); 15f62ea8a1Sandi require_once(DOKU_INC.'inc/auth.php'); 168746e727Sandi //close sesseion 178746e727Sandi session_write_close(); 18e935fb4aSAndreas Gohr if(!defined('CHUNK_SIZE')) define('CHUNK_SIZE',16*1024); 198746e727Sandi 20f62ea8a1Sandi $mimetypes = getMimeTypes(); 21f62ea8a1Sandi 22f62ea8a1Sandi //get input 2302b0b681SAndreas Gohr $MEDIA = stripctl(getID('media',false)); // no cleaning except control chars - maybe external 24f62ea8a1Sandi $CACHE = calc_cache($_REQUEST['cache']); 258fcc3410SAndreas Gohr $WIDTH = (int) $_REQUEST['w']; 268fcc3410SAndreas Gohr $HEIGHT = (int) $_REQUEST['h']; 27f62ea8a1Sandi list($EXT,$MIME) = mimetype($MEDIA); 28f62ea8a1Sandi if($EXT === false){ 29f62ea8a1Sandi $EXT = 'unknown'; 30f62ea8a1Sandi $MIME = 'application/octet-stream'; 31f62ea8a1Sandi } 32f62ea8a1Sandi 33f62ea8a1Sandi //media to local file 34d1ed0b61SAndreas Gohr if(preg_match('#^(https?)://#i',$MEDIA)){ 35d1ed0b61SAndreas Gohr //handle external images 36d1ed0b61SAndreas Gohr if(strncmp($MIME,'image/',6) == 0) $FILE = get_from_URL($MEDIA,$EXT,$CACHE); 37f62ea8a1Sandi if(!$FILE){ 38f62ea8a1Sandi //download failed - redirect to original URL 39f62ea8a1Sandi header('Location: '.$MEDIA); 40f62ea8a1Sandi exit; 41f62ea8a1Sandi } 42f62ea8a1Sandi }else{ 43f62ea8a1Sandi $MEDIA = cleanID($MEDIA); 44f62ea8a1Sandi if(empty($MEDIA)){ 45f62ea8a1Sandi header("HTTP/1.0 400 Bad Request"); 46f62ea8a1Sandi print 'Bad request'; 47f62ea8a1Sandi exit; 48f62ea8a1Sandi } 49f62ea8a1Sandi 50f62ea8a1Sandi //check permissions (namespace only) 51f62ea8a1Sandi if(auth_quickaclcheck(getNS($MEDIA).':X') < AUTH_READ){ 52f62ea8a1Sandi header("HTTP/1.0 401 Unauthorized"); 53f62ea8a1Sandi //fixme add some image for imagefiles 54f62ea8a1Sandi print 'Unauthorized'; 55f62ea8a1Sandi exit; 56f62ea8a1Sandi } 57f62ea8a1Sandi $FILE = mediaFN($MEDIA); 58f62ea8a1Sandi } 59f62ea8a1Sandi 60f62ea8a1Sandi //check file existance 61f62ea8a1Sandi if(!@file_exists($FILE)){ 62f62ea8a1Sandi header("HTTP/1.0 404 Not Found"); 63f62ea8a1Sandi //FIXME add some default broken image 64f62ea8a1Sandi print 'Not Found'; 65f62ea8a1Sandi exit; 66f62ea8a1Sandi } 67f62ea8a1Sandi 68f62ea8a1Sandi //handle image resizing 69f62ea8a1Sandi if((substr($MIME,0,5) == 'image') && $WIDTH){ 70f62ea8a1Sandi $FILE = get_resized($FILE,$EXT,$WIDTH,$HEIGHT); 71f62ea8a1Sandi } 72f62ea8a1Sandi 73e935fb4aSAndreas Gohr // finally send the file to the client 7483730152SBen Coburn sendFile($FILE,$MIME,$CACHE); 75f62ea8a1Sandi 76e935fb4aSAndreas Gohr/* ------------------------------------------------------------------------ */ 77f62ea8a1Sandi 78e935fb4aSAndreas Gohr/** 79e935fb4aSAndreas Gohr * Set headers and send the file to the client 80e935fb4aSAndreas Gohr * 81e935fb4aSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 8283730152SBen Coburn * @author Ben Coburn <btcoburn@silicodon.net> 83e935fb4aSAndreas Gohr */ 8483730152SBen Coburnfunction sendFile($file,$mime,$cache){ 8583730152SBen Coburn global $conf; 8683730152SBen Coburn $fmtime = filemtime($file); 87e935fb4aSAndreas Gohr // send headers 88e935fb4aSAndreas Gohr header("Content-Type: $mime"); 8983730152SBen Coburn // smart http caching headers 9083730152SBen Coburn if ($cache==-1) { 9183730152SBen Coburn // cache 9283730152SBen Coburn // cachetime or one hour 9383730152SBen Coburn header('Expires: '.gmdate("D, d M Y H:i:s", time()+max($conf['cachetime'], 3600)).' GMT'); 9483730152SBen Coburn header('Cache-Control: public, proxy-revalidate, no-transform, max-age='.max($conf['cachetime'], 3600)); 95e935fb4aSAndreas Gohr header('Pragma: public'); 9683730152SBen Coburn } else if ($cache>0) { 9783730152SBen Coburn // recache 9883730152SBen Coburn // remaining cachetime + 10 seconds so the newly recached media is used 9983730152SBen Coburn header('Expires: '.gmdate("D, d M Y H:i:s", $fmtime+$conf['cachetime']+10).' GMT'); 10083730152SBen Coburn header('Cache-Control: public, proxy-revalidate, no-transform, max-age='.max($fmtime-time()+$conf['cachetime']+10, 0)); 10183730152SBen Coburn header('Pragma: public'); 10283730152SBen Coburn } else if ($cache==0) { 10383730152SBen Coburn // nocache 10483730152SBen Coburn header('Cache-Control: must-revalidate, no-transform, post-check=0, pre-check=0'); 10583730152SBen Coburn header('Pragma: public'); 10683730152SBen Coburn } 107ff4f5ee7SBen Coburn //send important headers first, script stops here if '304 Not Modified' response 10883730152SBen Coburn http_conditionalRequest($fmtime); 1099a87c72aSAndreas Gohr 110f62ea8a1Sandi 111f62ea8a1Sandi //application mime type is downloadable 112e935fb4aSAndreas Gohr if(substr($mime,0,11) == 'application'){ 113e935fb4aSAndreas Gohr header('Content-Disposition: attachment; filename="'.basename($file).'";'); 114f62ea8a1Sandi } 115f62ea8a1Sandi 1169a87c72aSAndreas Gohr //use x-sendfile header to pass the delivery to compatible webservers 1179a87c72aSAndreas Gohr if($conf['xsendfile'] == 1){ 1189a87c72aSAndreas Gohr header("X-LIGHTTPD-send-file: $file"); 1199a87c72aSAndreas Gohr exit; 1209a87c72aSAndreas Gohr }elseif($conf['xsendfile'] == 2){ 1219a87c72aSAndreas Gohr header("X-Sendfile: $file"); 1229a87c72aSAndreas Gohr exit; 1239a87c72aSAndreas Gohr } 1249a87c72aSAndreas Gohr 1259a87c72aSAndreas Gohr //support download continueing 1269a87c72aSAndreas Gohr header('Accept-Ranges: bytes'); 1279a87c72aSAndreas Gohr list($start,$len) = http_rangeRequest(filesize($file)); 1289a87c72aSAndreas Gohr 129e935fb4aSAndreas Gohr // send file contents 130e935fb4aSAndreas Gohr $fp = @fopen($file,"rb"); 131f62ea8a1Sandi if($fp){ 132e935fb4aSAndreas Gohr fseek($fp,$start); //seek to start of range 133e935fb4aSAndreas Gohr 134e935fb4aSAndreas Gohr $chunk = ($len > CHUNK_SIZE) ? CHUNK_SIZE : $len; 135e935fb4aSAndreas Gohr while (!feof($fp) && $chunk > 0) { 136*d6751ba5SAndreas Gohr @set_time_limit(30); // large files can take a lot of time 137e935fb4aSAndreas Gohr print fread($fp, $chunk); 138615a21edSBrian Cowan flush(); 139e935fb4aSAndreas Gohr $len -= $chunk; 140e935fb4aSAndreas Gohr $chunk = ($len > CHUNK_SIZE) ? CHUNK_SIZE : $len; 141615a21edSBrian Cowan } 142615a21edSBrian Cowan fclose($fp); 143f62ea8a1Sandi }else{ 144f62ea8a1Sandi header("HTTP/1.0 500 Internal Server Error"); 145e935fb4aSAndreas Gohr print "Could not read $file - bad permissions?"; 146e935fb4aSAndreas Gohr } 147f62ea8a1Sandi} 148f62ea8a1Sandi 149e935fb4aSAndreas Gohr/** 150e935fb4aSAndreas Gohr * Checks and sets headers to handle range requets 151e935fb4aSAndreas Gohr * 152e935fb4aSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 153e935fb4aSAndreas Gohr * @returns array The start byte and the amount of bytes to send 154e935fb4aSAndreas Gohr */ 155e935fb4aSAndreas Gohrfunction http_rangeRequest($size){ 156e935fb4aSAndreas Gohr if(!isset($_SERVER['HTTP_RANGE'])){ 157e935fb4aSAndreas Gohr // no range requested - send the whole file 158e935fb4aSAndreas Gohr header("Content-Length: $size"); 159e935fb4aSAndreas Gohr return array(0,$size); 160e935fb4aSAndreas Gohr } 161e935fb4aSAndreas Gohr 162e935fb4aSAndreas Gohr $t = explode('=', $_SERVER['HTTP_RANGE']); 163e935fb4aSAndreas Gohr if (!$t[0]=='bytes') { 164e935fb4aSAndreas Gohr // we only understand byte ranges - send the whole file 165e935fb4aSAndreas Gohr header("Content-Length: $size"); 166e935fb4aSAndreas Gohr return array(0,$size); 167e935fb4aSAndreas Gohr } 168e935fb4aSAndreas Gohr 169e935fb4aSAndreas Gohr $r = explode('-', $t[1]); 170e935fb4aSAndreas Gohr $start = (int)$r[0]; 171e935fb4aSAndreas Gohr $end = (int)$r[1]; 172e935fb4aSAndreas Gohr if (!$end) $end = $size - 1; 173e935fb4aSAndreas Gohr if ($start > $end || $start > $size || $end > $size){ 174e935fb4aSAndreas Gohr header('HTTP/1.1 416 Requested Range Not Satisfiable'); 175e935fb4aSAndreas Gohr print 'Bad Range Request!'; 176e935fb4aSAndreas Gohr exit; 177e935fb4aSAndreas Gohr } 178e935fb4aSAndreas Gohr 179e935fb4aSAndreas Gohr $tot = $end - $start + 1; 180e935fb4aSAndreas Gohr header('HTTP/1.1 206 Partial Content'); 181e935fb4aSAndreas Gohr header("Content-Range: bytes {$start}-{$end}/{$size}"); 182e935fb4aSAndreas Gohr header("Content-Length: $tot"); 183e935fb4aSAndreas Gohr 184e935fb4aSAndreas Gohr return array($start,$tot); 185e935fb4aSAndreas Gohr} 186e935fb4aSAndreas Gohr 187e935fb4aSAndreas Gohr/** 188f62ea8a1Sandi * Resizes the given image to the given size 189f62ea8a1Sandi * 190f62ea8a1Sandi * @author Andreas Gohr <andi@splitbrain.org> 191f62ea8a1Sandi */ 192f62ea8a1Sandifunction get_resized($file, $ext, $w, $h=0){ 193f62ea8a1Sandi global $conf; 194f62ea8a1Sandi 195f62ea8a1Sandi $info = getimagesize($file); 196f62ea8a1Sandi if(!$h) $h = round(($w * $info[1]) / $info[0]); 197f62ea8a1Sandi 1988fcc3410SAndreas Gohr // we wont scale up to infinity 1998fcc3410SAndreas Gohr if($w > 2000 || $h > 2000) return $file; 200f62ea8a1Sandi 201f62ea8a1Sandi //cache 20298407a7aSandi $local = getCacheName($file,'.media.'.$w.'x'.$h.'.'.$ext); 203f62ea8a1Sandi $mtime = @filemtime($local); // 0 if not exists 204f62ea8a1Sandi 20568375754SPavel Vitis if( $mtime > filemtime($file) || 20668375754SPavel Vitis resize_imageIM($ext,$file,$info[0],$info[1],$local,$w,$h) || 20768375754SPavel Vitis resize_imageGD($ext,$file,$info[0],$info[1],$local,$w,$h) ){ 208f62ea8a1Sandi return $local; 209f62ea8a1Sandi } 210f62ea8a1Sandi //still here? resizing failed 211f62ea8a1Sandi return $file; 212f62ea8a1Sandi} 213f62ea8a1Sandi 214f62ea8a1Sandi/** 215f62ea8a1Sandi * Returns the wanted cachetime in seconds 216f62ea8a1Sandi * 217f62ea8a1Sandi * Resolves named constants 218f62ea8a1Sandi * 219f62ea8a1Sandi * @author Andreas Gohr <andi@splitbrain.org> 220f62ea8a1Sandi */ 221f62ea8a1Sandifunction calc_cache($cache){ 222f62ea8a1Sandi global $conf; 223f62ea8a1Sandi 224f62ea8a1Sandi if(strtolower($cache) == 'nocache') return 0; //never cache 225f62ea8a1Sandi if(strtolower($cache) == 'recache') return $conf['cachetime']; //use standard cache 226f62ea8a1Sandi return -1; //cache endless 227f62ea8a1Sandi} 228f62ea8a1Sandi 229f62ea8a1Sandi/** 230f62ea8a1Sandi * Download a remote file and return local filename 231f62ea8a1Sandi * 232f62ea8a1Sandi * returns false if download fails. Uses cached file if available and 233f62ea8a1Sandi * wanted 234f62ea8a1Sandi * 235f62ea8a1Sandi * @author Andreas Gohr <andi@splitbrain.org> 23668375754SPavel Vitis * @author Pavel Vitis <Pavel.Vitis@seznam.cz> 237f62ea8a1Sandi */ 238f62ea8a1Sandifunction get_from_URL($url,$ext,$cache){ 239f62ea8a1Sandi global $conf; 240f62ea8a1Sandi 241847b8298SAndreas Gohr // if no cache or fetchsize just redirect 242847b8298SAndreas Gohr if ($cache==0) return false; 243847b8298SAndreas Gohr if (!$conf['fetchsize']) return false; 2444f3c4962SBen Coburn 24568375754SPavel Vitis $local = getCacheName(strtolower($url),".media.$ext"); 246f62ea8a1Sandi $mtime = @filemtime($local); // 0 if not exists 247f62ea8a1Sandi 248f62ea8a1Sandi //decide if download needed: 2494f3c4962SBen Coburn if( ($mtime == 0) || // cache does not exist 2504f3c4962SBen Coburn ($cache != -1 && $mtime < time()-$cache) // 'recache' and cache has expired 25168375754SPavel Vitis ){ 252894a80ccSAndreas Gohr if(image_download($url,$local)){ 253f62ea8a1Sandi return $local; 254f62ea8a1Sandi }else{ 255f62ea8a1Sandi return false; 256f62ea8a1Sandi } 257f62ea8a1Sandi } 258f62ea8a1Sandi 259f62ea8a1Sandi //if cache exists use it else 260f62ea8a1Sandi if($mtime) return $local; 261f62ea8a1Sandi 262f62ea8a1Sandi //else return false 263f62ea8a1Sandi return false; 264f62ea8a1Sandi} 265f62ea8a1Sandi 266f62ea8a1Sandi/** 267894a80ccSAndreas Gohr * Download image files 268894a80ccSAndreas Gohr * 269894a80ccSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 270894a80ccSAndreas Gohr */ 271894a80ccSAndreas Gohrfunction image_download($url,$file){ 272894a80ccSAndreas Gohr global $conf; 273894a80ccSAndreas Gohr $http = new DokuHTTPClient(); 274894a80ccSAndreas Gohr $http->max_bodysize = $conf['fetchsize']; 275894a80ccSAndreas Gohr $http->timeout = 25; //max. 25 sec 276894a80ccSAndreas Gohr $http->header_regexp = '!\r\nContent-Type: image/(jpe?g|gif|png)!i'; 277894a80ccSAndreas Gohr 278894a80ccSAndreas Gohr $data = $http->get($url); 279894a80ccSAndreas Gohr if(!$data) return false; 280894a80ccSAndreas Gohr 281894a80ccSAndreas Gohr $fileexists = @file_exists($file); 282894a80ccSAndreas Gohr $fp = @fopen($file,"w"); 283894a80ccSAndreas Gohr if(!$fp) return false; 284894a80ccSAndreas Gohr fwrite($fp,$data); 285894a80ccSAndreas Gohr fclose($fp); 286894a80ccSAndreas Gohr if(!$fileexists and $conf['fperm']) chmod($file, $conf['fperm']); 287d1ed0b61SAndreas Gohr 288d1ed0b61SAndreas Gohr // check if it is really an image 289d1ed0b61SAndreas Gohr $info = @getimagesize($file); 290d1ed0b61SAndreas Gohr if(!$info){ 291d1ed0b61SAndreas Gohr @unlink($file); 292d1ed0b61SAndreas Gohr return false; 293d1ed0b61SAndreas Gohr } 294d1ed0b61SAndreas Gohr 295894a80ccSAndreas Gohr return true; 296894a80ccSAndreas Gohr} 297894a80ccSAndreas Gohr 298894a80ccSAndreas Gohr/** 29968375754SPavel Vitis * resize images using external ImageMagick convert program 30068375754SPavel Vitis * 30168375754SPavel Vitis * @author Pavel Vitis <Pavel.Vitis@seznam.cz> 30268375754SPavel Vitis * @author Andreas Gohr <andi@splitbrain.org> 30368375754SPavel Vitis */ 30468375754SPavel Vitisfunction resize_imageIM($ext,$from,$from_w,$from_h,$to,$to_w,$to_h){ 30568375754SPavel Vitis global $conf; 30668375754SPavel Vitis 3077bc7a78eSAndreas Gohr // check if convert is configured 3087bc7a78eSAndreas Gohr if(!$conf['im_convert']) return false; 30968375754SPavel Vitis 31068375754SPavel Vitis // prepare command 31168375754SPavel Vitis $cmd = $conf['im_convert']; 31268375754SPavel Vitis $cmd .= ' -resize '.$to_w.'x'.$to_h.'!'; 3132b03e74dSBen Coburn if ($ext == 'jpg' || $ext == 'jpeg') { 3142b03e74dSBen Coburn $cmd .= ' -quality '.$conf['jpg_quality']; 3152b03e74dSBen Coburn } 31668375754SPavel Vitis $cmd .= " $from $to"; 31768375754SPavel Vitis 31868375754SPavel Vitis @exec($cmd,$out,$retval); 31968375754SPavel Vitis if ($retval == 0) return true; 32068375754SPavel Vitis return false; 32168375754SPavel Vitis} 32268375754SPavel Vitis 32368375754SPavel Vitis/** 32468375754SPavel Vitis * resize images using PHP's libGD support 325f62ea8a1Sandi * 326f62ea8a1Sandi * @author Andreas Gohr <andi@splitbrain.org> 327e582e8b6Ss_wienecke * @author Sebastian Wienecke <s_wienecke@web.de> 328f62ea8a1Sandi */ 32968375754SPavel Vitisfunction resize_imageGD($ext,$from,$from_w,$from_h,$to,$to_w,$to_h){ 330f62ea8a1Sandi global $conf; 331f62ea8a1Sandi 332f62ea8a1Sandi if($conf['gdlib'] < 1) return false; //no GDlib available or wanted 333f62ea8a1Sandi 3344e406776SAndreas Gohr // check available memory 3354e406776SAndreas Gohr if(!is_mem_available(($from_w * $from_h * 4) + ($to_w * $to_h * 4))){ 3364e406776SAndreas Gohr return false; 3374e406776SAndreas Gohr } 3384e406776SAndreas Gohr 339f62ea8a1Sandi // create an image of the given filetype 340f62ea8a1Sandi if ($ext == 'jpg' || $ext == 'jpeg'){ 341f62ea8a1Sandi if(!function_exists("imagecreatefromjpeg")) return false; 342f62ea8a1Sandi $image = @imagecreatefromjpeg($from); 343f62ea8a1Sandi }elseif($ext == 'png') { 344f62ea8a1Sandi if(!function_exists("imagecreatefrompng")) return false; 345f62ea8a1Sandi $image = @imagecreatefrompng($from); 346f62ea8a1Sandi 347f62ea8a1Sandi }elseif($ext == 'gif') { 348f62ea8a1Sandi if(!function_exists("imagecreatefromgif")) return false; 349f62ea8a1Sandi $image = @imagecreatefromgif($from); 350f62ea8a1Sandi } 351f62ea8a1Sandi if(!$image) return false; 352f62ea8a1Sandi 353e582e8b6Ss_wienecke if(($conf['gdlib']>1) && function_exists("imagecreatetruecolor") && $ext != 'gif'){ 354f62ea8a1Sandi $newimg = @imagecreatetruecolor ($to_w, $to_h); 355f62ea8a1Sandi } 356f62ea8a1Sandi if(!$newimg) $newimg = @imagecreate($to_w, $to_h); 357dd7bbbf4SAndreas Gohr if(!$newimg){ 358dd7bbbf4SAndreas Gohr imagedestroy($image); 359dd7bbbf4SAndreas Gohr return false; 360dd7bbbf4SAndreas Gohr } 361f62ea8a1Sandi 362f62ea8a1Sandi //keep png alpha channel if possible 363f62ea8a1Sandi if($ext == 'png' && $conf['gdlib']>1 && function_exists('imagesavealpha')){ 364f62ea8a1Sandi imagealphablending($newimg, false); 365f62ea8a1Sandi imagesavealpha($newimg,true); 366f62ea8a1Sandi } 367f62ea8a1Sandi 368e582e8b6Ss_wienecke //keep gif transparent color if possible 369e582e8b6Ss_wienecke if($ext == 'gif' && function_exists('imagefill') && function_exists('imagecolorallocate')) { 370e582e8b6Ss_wienecke if(function_exists('imagecolorsforindex') && function_exists('imagecolortransparent')) { 371e582e8b6Ss_wienecke $transcolorindex = @imagecolortransparent($image); 372e582e8b6Ss_wienecke if($transcolorindex >= 0 ) { //transparent color exists 373e582e8b6Ss_wienecke $transcolor = @imagecolorsforindex($image, $transcolorindex); 374e582e8b6Ss_wienecke $transcolorindex = @imagecolorallocate($newimg, $transcolor['red'], $transcolor['green'], $transcolor['blue']); 375e582e8b6Ss_wienecke @imagefill($newimg, 0, 0, $transcolorindex); 376e582e8b6Ss_wienecke @imagecolortransparent($newimg, $transcolorindex); 377e582e8b6Ss_wienecke }else{ //filling with white 378e582e8b6Ss_wienecke $whitecolorindex = @imagecolorallocate($newimg, 255, 255, 255); 379e582e8b6Ss_wienecke @imagefill($newimg, 0, 0, $whitecolorindex); 380e582e8b6Ss_wienecke } 381e582e8b6Ss_wienecke }else{ //filling with white 382e582e8b6Ss_wienecke $whitecolorindex = @imagecolorallocate($newimg, 255, 255, 255); 383e582e8b6Ss_wienecke @imagefill($newimg, 0, 0, $whitecolorindex); 384e582e8b6Ss_wienecke } 385e582e8b6Ss_wienecke } 386e582e8b6Ss_wienecke 387f62ea8a1Sandi //try resampling first 388f62ea8a1Sandi if(function_exists("imagecopyresampled")){ 389f62ea8a1Sandi if(!@imagecopyresampled($newimg, $image, 0, 0, 0, 0, $to_w, $to_h, $from_w, $from_h)) { 390f62ea8a1Sandi imagecopyresized($newimg, $image, 0, 0, 0, 0, $to_w, $to_h, $from_w, $from_h); 391f62ea8a1Sandi } 392f62ea8a1Sandi }else{ 393f62ea8a1Sandi imagecopyresized($newimg, $image, 0, 0, 0, 0, $to_w, $to_h, $from_w, $from_h); 394f62ea8a1Sandi } 395f62ea8a1Sandi 396dd7bbbf4SAndreas Gohr $okay = false; 397f62ea8a1Sandi if ($ext == 'jpg' || $ext == 'jpeg'){ 398dd7bbbf4SAndreas Gohr if(!function_exists('imagejpeg')){ 399dd7bbbf4SAndreas Gohr $okay = false; 400dd7bbbf4SAndreas Gohr }else{ 4012b03e74dSBen Coburn $okay = imagejpeg($newimg, $to, $conf['jpg_quality']); 402dd7bbbf4SAndreas Gohr } 403f62ea8a1Sandi }elseif($ext == 'png') { 404dd7bbbf4SAndreas Gohr if(!function_exists('imagepng')){ 405dd7bbbf4SAndreas Gohr $okay = false; 406dd7bbbf4SAndreas Gohr }else{ 407dd7bbbf4SAndreas Gohr $okay = imagepng($newimg, $to); 408dd7bbbf4SAndreas Gohr } 409f62ea8a1Sandi }elseif($ext == 'gif') { 410dd7bbbf4SAndreas Gohr if(!function_exists('imagegif')){ 411dd7bbbf4SAndreas Gohr $okay = false; 412dd7bbbf4SAndreas Gohr }else{ 413dd7bbbf4SAndreas Gohr $okay = imagegif($newimg, $to); 414dd7bbbf4SAndreas Gohr } 415f62ea8a1Sandi } 416f62ea8a1Sandi 417dd7bbbf4SAndreas Gohr // destroy GD image ressources 418dd7bbbf4SAndreas Gohr if($image) imagedestroy($image); 419dd7bbbf4SAndreas Gohr if($newimg) imagedestroy($newimg); 420dd7bbbf4SAndreas Gohr 421dd7bbbf4SAndreas Gohr return $okay; 422f62ea8a1Sandi} 423f62ea8a1Sandi 4244e406776SAndreas Gohr/** 4254e406776SAndreas Gohr * Checks if the given amount of memory is available 4264e406776SAndreas Gohr * 4274e406776SAndreas Gohr * If the memory_get_usage() function is not available the 4284e406776SAndreas Gohr * function just assumes $used bytes of already allocated memory 4294e406776SAndreas Gohr * 4304e406776SAndreas Gohr * @param int $mem Size of memory you want to allocate in bytes 4314e406776SAndreas Gohr * @param int $used already allocated memory (see above) 4324e406776SAndreas Gohr * @author Filip Oscadal <webmaster@illusionsoftworks.cz> 4334e406776SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 4344e406776SAndreas Gohr */ 4354e406776SAndreas Gohrfunction is_mem_available($mem,$bytes=1048576){ 4364e406776SAndreas Gohr $limit = trim(ini_get('memory_limit')); 4374e406776SAndreas Gohr if(empty($limit)) return true; // no limit set! 4384e406776SAndreas Gohr 4394e406776SAndreas Gohr // parse limit to bytes 4404e406776SAndreas Gohr $unit = strtolower(substr($limit,-1)); 4414e406776SAndreas Gohr switch($unit){ 4424e406776SAndreas Gohr case 'g': 4434e406776SAndreas Gohr $limit = substr($limit,0,-1); 4444e406776SAndreas Gohr $limit *= 1024*1024*1024; 4454e406776SAndreas Gohr break; 4464e406776SAndreas Gohr case 'm': 4474e406776SAndreas Gohr $limit = substr($limit,0,-1); 4484e406776SAndreas Gohr $limit *= 1024*1024; 4494e406776SAndreas Gohr break; 4504e406776SAndreas Gohr case 'k': 4514e406776SAndreas Gohr $limit = substr($limit,0,-1); 4524e406776SAndreas Gohr $limit *= 1024; 4534e406776SAndreas Gohr break; 4544e406776SAndreas Gohr } 4554e406776SAndreas Gohr 4564e406776SAndreas Gohr // get used memory if possible 4574e406776SAndreas Gohr if(function_exists('memory_get_usage')){ 4584e406776SAndreas Gohr $used = memory_get_usage(); 4594e406776SAndreas Gohr } 4604e406776SAndreas Gohr 4614e406776SAndreas Gohr 4624e406776SAndreas Gohr if($used+$mem > $limit){ 4634e406776SAndreas Gohr return false; 4644e406776SAndreas Gohr } 4654e406776SAndreas Gohr 4664e406776SAndreas Gohr return true; 4674e406776SAndreas Gohr} 468f62ea8a1Sandi 469f62ea8a1Sandi//Setup VIM: ex: et ts=2 enc=utf-8 : 470f62ea8a1Sandi?> 471