1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<?php
$result = array (
'xmp-exif' =>
array (
'CameraOwnerName' => 'Me!',
),
'xmp-general' =>
array (
'LicenseUrl' => 'http://creativecommons.com/cc-by-2.9',
'ImageDescription' =>
array (
'x-default' => 'Test image for the cc: xmp: xmpRights: namespaces in xmp',
'_type' => 'lang',
),
'ObjectName' =>
array (
'x-default' => 'xmp core/xmp rights/cc ns test',
'_type' => 'lang',
),
'DateTimeDigitized' => '2005:04:03',
'Software' => 'The one true editor: Vi (ok i used gimp)',
'Identifier' =>
array (
0 => 'http://example.com/identifierurl',
1 => 'urn:sha1:342524abcdef',
'_type' => 'ul',
),
'Label' => 'Test image',
'DateTimeMetadata' => '2011:05:12',
'DateTime' => '2007:03:04 06:34:10',
'Nickname' => 'My little xmp test image',
'Rating' => '5',
'RightsCertificate' => 'http://example.com/rights-certificate/',
'Copyrighted' => 'True',
'CopyrightOwner' =>
array (
0 => 'Bawolff is copyright owner',
'_type' => 'ul',
),
'UsageTerms' =>
array (
'x-default' => 'do whatever you want',
'en-gb' => 'Do whatever you want in british english',
'_type' => 'lang',
),
'WebStatement' => 'http://example.com/web_statement',
),
'xmp-deprecated' =>
array (
'Identifier' => 'http://example.com/identifierurl/wrong',
),
);
|