mirror of
https://github.com/hnhx/librex.git
synced 2025-01-10 19:52:40 -03:00
12 lines
205 B
PHP
12 lines
205 B
PHP
<?php
|
|
|
|
$config = require "config.php";
|
|
require "misc/tools.php";
|
|
|
|
$image = $_REQUEST["url"];
|
|
|
|
$image_src = request($image);
|
|
|
|
header("Content-Type: image/jpeg");
|
|
echo $image_src;
|
|
?>
|