|
|
@ -1,11 +1,14 @@ |
|
|
|
<?php |
|
|
|
<?php |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
require_once('../config.php'); |
|
|
|
require_once('../library/icon.php'); |
|
|
|
require_once('../library/icon.php'); |
|
|
|
|
|
|
|
|
|
|
|
if (isset($_GET['hash'])) { |
|
|
|
if (isset($_GET['hash'])) { |
|
|
|
|
|
|
|
|
|
|
|
header("Content-Type: image/jpeg"); |
|
|
|
header("Content-Type: image/jpeg"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (CACHE_ENABLED) { |
|
|
|
|
|
|
|
|
|
|
|
$filename = dirname(__FILE__) . '/../cache/' . $_GET['hash'] . '.jpeg'; |
|
|
|
$filename = dirname(__FILE__) . '/../cache/' . $_GET['hash'] . '.jpeg'; |
|
|
|
|
|
|
|
|
|
|
|
if (!file_exists($filename)) { |
|
|
|
if (!file_exists($filename)) { |
|
|
@ -16,4 +19,11 @@ if (isset($_GET['hash'])) { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
echo file_get_contents($filename); |
|
|
|
echo file_get_contents($filename); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$icon = new Icon(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo $icon->generateImageResource(md5($_GET['hash']), 60, 60, false); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|