$v) { if ($v == $path[$k]) { array_shift($temp); } else { if ($part - $k > 1) { $temp = array_pad($temp, 0 - (count($temp) + ($part - $k) - 1), '..'); break; } else { $temp[0] = './' . $temp[0]; } } } $src = implode('/', $temp); } } if (!extension_loaded('gd')) { die('GD extension is not installed'); } if (!is_writable(THUMB_CACHE_REAL)) { die('Cache not writable'); } if (isset($path['scheme']) || !file_exists($src)) { die('File cannot be found'); } $file_salt = 'v1.0.9'; $file_size = filesize($src); $file_time = filemtime($src); $file_date = gmdate('D, d M Y H:i:s T', $file_time); $file_pathinfo = pathinfo($src); $file_type = array($file_pathinfo['extension'], 'gif', 'jpeg', 'png')[$format]; $file_hash = md5($file_salt . ($src . $size . $crop . $trim . $zoom . $align . $sharpen . $gray . $ignore . $format) . $file_time); $file_temp = THUMB_CACHE_REAL . $file_hash . THUMB_CACHE_EXTENSION; if (!file_exists(THUMB_CACHE_INDEX)) { touch(THUMB_CACHE_INDEX); } if (($fp = fopen(THUMB_CACHE_INDEX, 'r')) !== false) { if (flock($fp, LOCK_EX)) { if (time() - THUMB_CACHE_AGE > filemtime(THUMB_CACHE_INDEX)) { $files = glob(THUMB_CACHE_REAL . '*' . THUMB_CACHE_EXTENSION); if (is_array($files) && count($files) > 0) { foreach ($files as $file) { if (time() - THUMB_CACHE_AGE > filemtime($file)) { unlink($file); } } } touch(THUMB_CACHE_INDEX); } flock($fp, LOCK_UN); } fclose($fp); } if (THUMB_BROWSER_CACHE && (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) || isset($_SERVER['HTTP_IF_NONE_MATCH']))) { if ($_SERVER['HTTP_IF_MODIFIED_SINCE'] == $file_date && $_SERVER['HTTP_IF_NONE_MATCH'] == $file_hash) { header($_SERVER['SERVER_PROTOCOL'] . ' 304 Not Modified'); die(); } } if (!file_exists($file_temp)) { $file_info = getimagesize($src); if ($file_info == false) { die('File is not an image'); } list($w0, $h0, $type) = $file_info; $data = file_get_contents($src); if ($ignore && $type == 1) { if (preg_match('/\x00\x21\xF9\x04.{4}\x00(\x2C|\x21)/s', $data)) { image_headers(); die($data); } } $oi = imagecreatefromstring($data); if (function_exists('exif_read_data') && ADJUST_ORIENTATION && $type == 2) { // I know supressing errors is bad, but calling exif_read_data on invalid // or corrupted data returns a fatal error and there's no way to validate // the EXIF data before calling the function. $exif = @exif_read_data($src, EXIF); if (isset($exif['Orientation'])) { $degree = 0; $mirror = false; switch ($exif['Orientation']) { case 2: $mirror = true; break; case 3: $degree = 180; break; case 4: $degree = 180; $mirror = true; break; case 5: $degree = 270; $mirror = true; $w0 ^= $h0 ^= $w0 ^= $h0; break; case 6: $degree = 270; $w0 ^= $h0 ^= $w0 ^= $h0; break; case 7: $degree = 90; $mirror = true; $w0 ^= $h0 ^= $w0 ^= $h0; break; case 8: $degree = 90; $w0 ^= $h0 ^= $w0 ^= $h0; break; } if ($degree > 0) { $oi = imagerotate($oi, $degree, 0); } if ($mirror) { $nm = $oi; $oi = imagecreatetruecolor($w0, $h0); imagecopyresampled($oi, $nm, 0, 0, $w0 - 1, 0, $w0, $h0, -$w0, $h0); imagedestroy($nm); } } } list($w, $h) = explode('x', str_replace('<', '', $size) . 'x'); $w = ($w != '') ? floor(max(8, min(1500, $w))) : ''; $h = ($h != '') ? floor(max(8, min(1500, $h))) : ''; if (strstr($size, '<')) { $h = $w; $crop = 0; $trim = 1; } elseif (!strstr($size, 'x')) { $h = $w; } elseif ($w == '' || $h == '') { $w = ($w == '') ? ($w0 * $h) / $h0 : $w; $h = ($h == '') ? ($h0 * $w) / $w0 : $h; $crop = 0; $trim = 1; } $trim_w = ($trim) ? 1 : ($w == '') ? 1 : 0; $trim_h = ($trim) ? 1 : ($h == '') ? 1 : 0; if ($crop) { $w1 = (($w0 / $h0) > ($w / $h)) ? floor($w0 * $h / $h0) : $w; $h1 = (($w0 / $h0) < ($w / $h)) ? floor($h0 * $w / $w0) : $h; if (!$zoom) { if ($h0 < $h || $w0 < $w) { $w1 = $w0; $h1 = $h0; } } } else { $w1 = (($w0 / $h0) < ($w / $h)) ? floor($w0 * $h / $h0) : floor($w); $h1 = (($w0 / $h0) > ($w / $h)) ? floor($h0 * $w / $w0) : floor($h); $w = floor($w); $h = floor($h); if (!$zoom) { if ($h0 < $h && $w0 < $w) { $w1 = $w0; $h1 = $h0; } } } $w = ($trim_w) ? (($w0 / $h0) > ($w / $h)) ? min($w, $w1) : $w1 : $w; $h = ($trim_h) ? (($w0 / $h0) < ($w / $h)) ? min($h, $h1) : $h1 : $h; if ($sharpen) { $matrix = array( array(-1, -1, -1), array(-1, SHARPEN_MAX - ($sharpen * (SHARPEN_MAX - SHARPEN_MIN)) / 100, -1), array(-1, -1, -1) ); $divisor = array_sum(array_map('array_sum', $matrix)); } $x = strpos($align, 'l') !== false ? 0 : (strpos($align, 'r') !== false ? $w - $w1 : ($w - $w1) / 2); $y = strpos($align, 't') !== false ? 0 : (strpos($align, 'b') !== false ? $h - $h1 : ($h - $h1) / 2); $im = imagecreatetruecolor($w, $h); $bg = imagecolorallocate($im, 255, 255, 255); imagefill($im, 0, 0, $bg); switch ($file_type) { case 'gif': imagecopyresampled($im, $oi, $x, $y, 0, 0, $w1, $h1, $w0, $h0); if ($sharpen && version_compare(PHP_VERSION, '5.1.0', '>=')) { imageconvolution($im, $matrix, $divisor, 0); } if ($gray) { imagefilter($im, IMG_FILTER_GRAYSCALE); } imagegif($im, $file_temp); break; case 'jpg': case 'jpeg': imagecopyresampled($im, $oi, $x, $y, 0, 0, $w1, $h1, $w0, $h0); if ($sharpen && version_compare(PHP_VERSION, '5.1.0', '>=')) { imageconvolution($im, $matrix, $divisor, 0); } if ($gray) { imagefilter($im, IMG_FILTER_GRAYSCALE); } imagejpeg($im, $file_temp, JPEG_QUALITY); break; case 'png': imagefill($im, 0, 0, imagecolorallocatealpha($im, 0, 0, 0, 127)); imagesavealpha($im, true); imagealphablending($im, false); imagecopyresampled($im, $oi, $x, $y, 0, 0, $w1, $h1, $w0, $h0); if ($sharpen && version_compare(PHP_VERSION, '5.1.0', '>=')) { $fix = imagecolorat($im, 0, 0); imageconvolution($im, $matrix, $divisor, 0); imagesetpixel($im, 0, 0, $fix); } if ($gray) { imagefilter($im, IMG_FILTER_GRAYSCALE); } imagepng($im, $file_temp); break; } imagedestroy($im); imagedestroy($oi); } $file_size = filesize($file_temp); image_headers(); readfile($file_temp);