I'm trying to retrieve JPEG file's keywords using PHP's native function:
exif_read_data
But it doesn't retrieve Keywords' data.
Tried bunch of ways, other libraries like PEL, etc. None of them worked.
Here is what I see on my Mac:
And here is the output of exif_read_data($image, 'ANY_TAG', true);
function:
array(4) {
["FILE"]=>
array(6) {
["FileName"]=>
string(17) "casino-st1-01.jpg"
["FileDateTime"]=>
int(1483098243)
["FileSize"]=>
int(454913)
["FileType"]=>
int(2)
["MimeType"]=>
string(10) "image/jpeg"
["SectionsFound"]=>
string(19) "ANY_TAG, IFD0, EXIF"
}
["COMPUTED"]=>
array(5) {
["html"]=>
string(26) "width="4167" height="4167""
["Height"]=>
int(4167)
["Width"]=>
int(4167)
["IsColor"]=>
int(1)
["ByteOrderMotorola"]=>
int(1)
}
["IFD0"]=>
array(4) {
["ImageDescription"]=>
string(58) "playing card icon illustration isolated vector sign symbol"
["Orientation"]=>
int(1)
["Software"]=>
string(35) "Adobe Illustrator CC 2015 (Windows)"
["DateTime"]=>
string(19) "2016:12:15 08:30:58"
}
["EXIF"]=>
array(2) {
["ExifVersion"]=>
string(4) "0221"
["ColorSpace"]=>
int(65535)
}
}
I'm using latest PHP7 installation on Ubuntu 16 and my PHP settings are set to:
[exif]
exif.encode_unicode = UTF-8
exif.decode_unicode_motorola = UCS-2LE
What am I doing wrong?
I think that data is in
IPTC
block.So try this one:
more detailed examples You can find in comments
in this official doc: http://php.net/manual/en/function.iptcparse.php
IPTC headers are:
and here is Your class to work with IPTC OOP way (:
usage:
or to use with DB ORMs (for example: Eloquent):
P.S. feel free to extend my class with necessary for You functions