mirror of
https://github.com/kvazar-network/webapp.git
synced 2025-01-10 07:08:00 +00:00
12 lines
209 B
PHP
12 lines
209 B
PHP
|
<?php
|
||
|
|
||
|
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);
|
||
|
}
|