我想检索 JPG 图像的 IPTC 2#005 值的 65 个以上字符。
但是当我使用经典时:
$size = getimagesize($photo, $info);
if(isset($info['APP13']))
{
$iptc = iptcparse($info['APP13']);
return $iptc;
}
该短语被截断:
["2#005"]=>
array(1) {
[0]=>
string(64) "When you have eliminated the impossible, whatever remains, howev"
}
但 Adobe Photoshop、Adobe Bridge、Windows 10 Explorer 可以在照片元数据中显示整个字符串(超过 65 个限制)(“当你消除了不可能的事情后,剩下的事情,无论多么不可能,一定是事实?”)
你知道如何用 PHP 检索整个字符串吗?请
非常感谢