を使用して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ソースはここで利用可能であり、それぞれの出力は次のとおりです。