Browse Source

add image cache support

pull/7/head
ghost 3 years ago
parent
commit
e0245efaf1
  1. 0
      cache/index.html
  2. 14
      public/image.php

0
cache/index.html vendored

14
public/image.php

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

Loading…
Cancel
Save