mirror of
https://github.com/kvazar-network/webapp.git
synced 2025-01-09 22:57:53 +00:00
12 lines
209 B
PHP
Executable File
12 lines
209 B
PHP
Executable File
<?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);
|
|
}
|