2

我正在尝试将 IPTC 数据嵌入到 JPEG 图像中,iptcembed()但遇到了一些麻烦。

我已经验证它在最终产品中:

// Embed the IPTC data
$content = iptcembed($data, $path);

// Verify IPTC data is in the end image
$iptc = iptcparse($content);
var_dump($iptc);

它返回输入的标签。

但是,当我保存并重新加载图像时,标签不存在:

// Save the edited image
$im = imagecreatefromstring($content);
imagejpeg($im, 'phplogo-edited.jpg');
imagedestroy($im);

// Get data from the saved image
$image = getimagesize('./phplogo-edited.jpg');

// If APP13/IPTC data exists output it
if(isset($image['APP13']))
{
    $iptc = iptcparse($image['APP13']);
    print_r($iptc);
}
else
{
    // Otherwise tell us what the image *does* contain
    // SO: This is what's happening
    print_r($image);
}

那么为什么保存的图像中没有标签?

PHP 源代码在此处可用,相应的输出为:

  1. 图像输出
  2. 数据输出
4

1 回答 1

3

getimagesize有一个可选的第二个参数Imageinfo,其中包含您需要的信息。

从手册:

此可选参数允许您从图像文件中提取一些扩展信息。目前,这将返回不同的 JPG APP 标记作为关联数组。一些程序使用这些 APP 标记在图像中嵌入文本信息。一种很常见的做法是在 APP13 标记中嵌入 » IPTC 信息。您可以使用该iptcparse()函数将二进制 APP13 标记解析为可读的内容。

所以你可以像这样使用它:

<?php
$size = getimagesize('./phplogo-edited.jpg', $info);
if(isset($info['APP13']))
{
    $iptc = iptcparse($info['APP13']);
    var_dump($iptc);
}
?>

希望这可以帮助...

于 2008-08-23T19:19:46.767 回答