image_proxy.php 205 B

123456789101112
  1. <?php
  2. $config = require "config.php";
  3. require "misc/tools.php";
  4. $image = $_REQUEST["url"];
  5. $image_src = request($image);
  6. header("Content-Type: image/jpeg");
  7. echo $image_src;
  8. ?>