server.php 334 B

1234567891011121314
  1. <?php
  2. header('Content-Type: image/png');
  3. $path = 'https://rockdev.oc.hu/uix/images/pdf_head.jpg';
  4. $path = 'https://wasabi.hu/static/img/wasabi_logo.png';
  5. $type = pathinfo($path, PATHINFO_EXTENSION);
  6. $data = file_get_contents($path);
  7. print_r($data);
  8. die();
  9. //$base64 = 'data:image/' . $type . ';base64,' . base64_encode($data);
  10. ?>