Exemplo n.º 1
0
 /**
  * Have a high offset to simulate a missing packet,
  * which should cause it to ignore the ExtendedXMP packet.
  *
  * @covers XMPReader::parseExtended
  */
 public function testExtendedXMPMissingPacket()
 {
     $xmpPath = __DIR__ . '/../../data/xmp/';
     $standardXMP = file_get_contents($xmpPath . 'xmpExt.xmp');
     $extendedXMP = file_get_contents($xmpPath . 'xmpExt2.xmp');
     $md5sum = '28C74E0AC2D796886759006FBE2E57B7';
     // of xmpExt2.xmp
     $length = pack('N', strlen($extendedXMP));
     $offset = pack('N', 2048);
     $extendedPacket = $md5sum . $length . $offset . $extendedXMP;
     $reader = new XMPReader();
     $reader->parse($standardXMP);
     $reader->parseExtended($extendedPacket);
     $actual = $reader->getResults();
     $expected = array('xmp-exif' => array('DigitalZoomRatio' => '0/10', 'Flash' => 9));
     $this->assertEquals($expected, $actual);
 }
Exemplo n.º 2
0
 /** function for gif images.
  *
  * They don't really have native metadata, so just merges together
  * XMP and image comment.
  *
  * @param string $filename full path to file
  * @return Array metadata array
  */
 public static function GIF($filename)
 {
     $meta = new self();
     $baseArray = GIFMetadataExtractor::getMetadata($filename);
     if (count($baseArray['comment']) > 0) {
         $meta->addMetadata(array('GIFFileComment' => $baseArray['comment']), 'native');
     }
     if ($baseArray['xmp'] !== '' && function_exists('xml_parser_create_ns')) {
         $xmp = new XMPReader();
         $xmp->parse($baseArray['xmp']);
         $xmpRes = $xmp->getResults();
         foreach ($xmpRes as $type => $xmpSection) {
             $meta->addMetadata($xmpSection, $type);
         }
     }
     unset($baseArray['comment']);
     unset($baseArray['xmp']);
     $baseArray['metadata'] = $meta->getMetadataArray();
     $baseArray['metadata']['_MW_GIF_VERSION'] = GIFMetadataExtractor::VERSION;
     return $baseArray;
 }
Exemplo n.º 3
0
 /**
  * Postprocess the metadata (convert xmp into useful form, etc)
  *
  * This is used to generate the metadata table at the bottom
  * of the image description page.
  *
  * @param $data Array metadata
  * @return Array post-processed metadata
  */
 protected function postProcessDump(array $data)
 {
     $meta = new BitmapMetadataHandler();
     $items = array();
     foreach ($data as $key => $val) {
         switch ($key) {
             case 'Title':
                 $items['ObjectName'] = $val;
                 break;
             case 'Subject':
                 $items['ImageDescription'] = $val;
                 break;
             case 'Keywords':
                 // Sometimes we have empty keywords. This seems
                 // to be a product of how pdfinfo deals with keywords
                 // with spaces in them. Filter such empty keywords
                 $keyList = array_filter(explode(' ', $val));
                 if (count($keyList) > 0) {
                     $items['Keywords'] = $keyList;
                 }
                 break;
             case 'Author':
                 $items['Artist'] = $val;
                 break;
             case 'Creator':
                 // Program used to create file.
                 // Different from program used to convert to pdf.
                 $items['Software'] = $val;
                 break;
             case 'Producer':
                 // Conversion program
                 $items['pdf-Producer'] = $val;
                 break;
             case 'ModTime':
                 $timestamp = wfTimestamp(TS_EXIF, $val);
                 if ($timestamp) {
                     // 'if' is just paranoia
                     $items['DateTime'] = $timestamp;
                 }
                 break;
             case 'CreationTime':
                 $timestamp = wfTimestamp(TS_EXIF, $val);
                 if ($timestamp) {
                     $items['DateTimeDigitized'] = $timestamp;
                 }
                 break;
                 // These last two (version and encryption) I was unsure
                 // if we should include in the table, since they aren't
                 // all that useful to editors. I leaned on the side
                 // of including. However not including if file
                 // is optimized/linearized since that is really useless
                 // to an editor.
             // These last two (version and encryption) I was unsure
             // if we should include in the table, since they aren't
             // all that useful to editors. I leaned on the side
             // of including. However not including if file
             // is optimized/linearized since that is really useless
             // to an editor.
             case 'PDF version':
                 $items['pdf-Version'] = $val;
                 break;
             case 'Encrypted':
                 // @todo: The value isn't i18n-ised. The appropriate
                 // place to do that is in FormatMetadata.php
                 // should add a hook a there.
                 // For reference, if encrypted this fields value looks like:
                 // "yes (print:yes copy:no change:no addNotes:no)"
                 $items['pdf-Encrypted'] = $val;
                 break;
                 // Note 'pages' and 'Pages' are different keys (!)
             // Note 'pages' and 'Pages' are different keys (!)
             case 'pages':
                 // A pdf document can have multiple sized pages in it.
                 // (However 95% of the time, all pages are the same size)
                 // get a list of all the unique page sizes in document.
                 // This doesn't do anything with rotation as of yet,
                 // mostly because I am unsure of what a good way to
                 // present that information to the user would be.
                 $pageSizes = array();
                 foreach ($val as $page) {
                     if (isset($page['Page size'])) {
                         $pageSizes[$page['Page size']] = true;
                     }
                 }
                 $pageSizeArray = array_keys($pageSizes);
                 if (count($pageSizeArray) > 0) {
                     $items['pdf-PageSize'] = $pageSizeArray;
                 }
                 break;
         }
     }
     $meta->addMetadata($items, 'native');
     if (isset($data['xmp']) && function_exists('xml_parser_create_ns')) {
         // func exists verifies that the xml extension required for XMPReader
         // is present (Almost always is present)
         // @todo: This only handles generic xmp properties. Would be improved
         // by handling pdf xmp properties (pdf and pdfx) via XMPInfo hook.
         $xmp = new XMPReader(LoggerFactory::getInstance('XMP'));
         $xmp->parse($data['xmp']);
         $xmpRes = $xmp->getResults();
         foreach ($xmpRes as $type => $xmpSection) {
             $meta->addMetadata($xmpSection, $type);
         }
     }
     unset($data['xmp']);
     $data['mergedMetadata'] = $meta->getMetadataArray();
     return $data;
 }
Exemplo n.º 4
0
 /**
  * Test for multi-section, hostile XML
  * @covers checkParseSafety
  */
 public function testCheckParseSafety()
 {
     // Test for detection
     $xmpPath = __DIR__ . '/../../data/xmp/';
     $file = fopen($xmpPath . 'doctype-included.xmp', 'rb');
     $valid = false;
     $reader = new XMPReader();
     do {
         $chunk = fread($file, 10);
         $valid = $reader->parse($chunk, feof($file));
     } while (!feof($file));
     $this->assertFalse($valid, 'Check that doctype is detected in fragmented XML');
     $this->assertEquals(array(), $reader->getResults(), 'Check that doctype is detected in fragmented XML');
     fclose($file);
     unset($reader);
     // Test for false positives
     $file = fopen($xmpPath . 'doctype-not-included.xmp', 'rb');
     $valid = false;
     $reader = new XMPReader();
     do {
         $chunk = fread($file, 10);
         $valid = $reader->parse($chunk, feof($file));
     } while (!feof($file));
     $this->assertTrue($valid, 'Check for false-positive detecting doctype in fragmented XML');
     $this->assertEquals(array('xmp-exif' => array('DigitalZoomRatio' => '0/10', 'Flash' => '9')), $reader->getResults(), 'Check that doctype is detected in fragmented XML');
 }
 /** function for gif images.
  *
  * They don't really have native metadata, so just merges together
  * XMP and image comment.
  *
  * @param string $filename Full path to file
  * @return array Metadata array
  */
 public static function GIF($filename)
 {
     $meta = new self();
     $baseArray = GIFMetadataExtractor::getMetadata($filename);
     if (count($baseArray['comment']) > 0) {
         $meta->addMetadata(['GIFFileComment' => $baseArray['comment']], 'native');
     }
     if ($baseArray['xmp'] !== '' && XMPReader::isSupported()) {
         $xmp = new XMPReader(LoggerFactory::getInstance('XMP'));
         $xmp->parse($baseArray['xmp']);
         $xmpRes = $xmp->getResults();
         foreach ($xmpRes as $type => $xmpSection) {
             $meta->addMetadata($xmpSection, $type);
         }
     }
     unset($baseArray['comment']);
     unset($baseArray['xmp']);
     $baseArray['metadata'] = $meta->getMetadataArray();
     $baseArray['metadata']['_MW_GIF_VERSION'] = GIFMetadataExtractor::VERSION;
     return $baseArray;
 }