1

我有关键字的图像。我无法使用 IPTC 提取关键字。有人找到了检索关键字词组的方法吗?如何接近结果?我在论坛的某个地方找到了这段代码。

 <?php function output_iptc_data( $image_path ) {
$size = getimagesize ( $image_path, $info);
if(is_array($info)) {
    $iptc = iptcparse($info["APP13"]);
    foreach (array_keys($iptc) as $s) {
        $c = count ($iptc[$s]);
        for ($i=0; $i <$c; $i++)
        {
            echo $s.' = '.$iptc[$s][$i].'<br>';
        }
    }
} } output_iptc_data('IMGP4053m.jpg'); ?>
4

1 回答 1

-1

@kuslahne 请检查我的图书馆:https ://iudasov.github.io/php7-iptc-manager/

似乎它可以满足您的一切需求。

// import the Manager class
use iBudasov\Iptc\Manager;

// ... and instantiate it!
$manager = Manager::create();

$manager->loadFile('./IMGP4053m.jpg');

$allTheTagsInTheImage = $manager->getTags();
于 2018-08-31T11:55:02.480 回答