Link.FYI

Pastebin

Create New My Pastes

Code (PHP) pasted on 2019-08-05, 22:03 Raw Source

  1. <?php
  2.             $stream = $filesystem->readStream($object['path']);
  3.             $content = "";
  4.             $startFound = false;
  5.             while (!$startFound && !feof($stream)) {
  6.                 $content .= stream_get_contents($stream, 128);
  7.                 $offset = strpos($content, '<x:xmpmeta');
  8.                 if ($offset != false) {
  9.                     $startFound = true;
  10.                 }
  11.             }
  12.  
  13.             // jump to the found offset
  14.             $content = stream_get_contents($stream, 128, $offset);
  15.  
  16.             $endFound = false;
  17.             while (!$endFound && !feof($stream)) {
  18.                 $content .= stream_get_contents($stream, 128);
  19.                 $offset = strpos($content, '</x:xmpmeta>');
  20.                 if ($offset != false) {
  21.                     $endFound = true;
  22.                 }
  23.             }
  24.  
  25.             echo $content;
  26.             die();
  27.  
  28. // spaßeshalber:
  29. // start-offset beim ersten bild: 2687
  30. // end-offset beim ersten bild: 6014