https://github.com/wikimedia/mediawiki-libs-xmpreader
Reader for XMP data containing properties relevant to images. Mirror from https://gerrit.wikimedia.org/g/mediawiki/libs/XMPReader - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
https://github.com/wikimedia/mediawiki-libs-xmpreader
Last synced: 4 months ago
JSON representation
Reader for XMP data containing properties relevant to images. Mirror from https://gerrit.wikimedia.org/g/mediawiki/libs/XMPReader - our actual code is hosted with Gerrit (please see https://www.mediawiki.org/wiki/Developer_access for contributing)
- Host: GitHub
- URL: https://github.com/wikimedia/mediawiki-libs-xmpreader
- Owner: wikimedia
- License: gpl-2.0
- Created: 2017-09-04T00:36:24.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-01-12T19:49:37.000Z (5 months ago)
- Last Synced: 2025-01-30T12:46:36.283Z (4 months ago)
- Language: PHP
- Homepage:
- Size: 168 KB
- Stars: 6
- Watchers: 13
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
## XMPReader
Reader for XMP data containing properties relevant to images, written in PHP.
### Usage
```php
composer require wikimedia/xmp-reader
``````php
use Wikimedia\XMPReader\Reader as XMPReader;//...
// Check if the php instance has the required supported libraries to parse XMP
$isXMPSupported = XMPReader::isSupported();// Create a new instance
$xmp = new XMPReader();
// or
$xmp = new XMPReader( $logger, $filename );
// where $logger is an implementation of Psr\Log\LoggerInterface and $filename a string describing the origin of your XMP content// To parse XMP data in $string
$xmp->parse( $string );// To parse XMP Extended data in $string
$xmp->parseExtended( $string );// To retrieve the parsed results
$results = $xmp->getResults();
```The parsed results are returned in an array of 3 potential groups,
which indicate their priority according to the Metadata Working Group guidance.
http://www.metadataworkinggroup.org/pdf/mwg_guidance.pdf```php
[
'xmp-exif' => [],
'xmp-general' => [],
'xmp-deprecated' => [],
]
```### Supported XMP
Most of the following metadata sets are supported
* http://ns.adobe.com/exif/1.0/
* http://ns.adobe.com/tiff/1.0/
* http://ns.adobe.com/exif/1.0/aux/
* http://purl.org/dc/elements/1.1/
* http://ns.adobe.com/xap/1.0/rights/
* http://creativecommons.org/ns#
* http://ns.adobe.com/xmp/note/Some of:
* http://ns.adobe.com/xap/1.0/
* http://ns.adobe.com/xap/1.0/mm/
* http://ns.adobe.com/photoshop/1.0/
* http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/
* http://iptc.org/std/Iptc4xmpExt/2008-02-29/## License
GNU General Public License v2.0