gpt4 book ai didi

php - 如何使用 php 将数据存储在图像中?

转载 作者:行者123 更新时间:2023-12-03 18:41:17 26 4
gpt4 key购买 nike

我曾尝试使用 imagick 库创建如下两个函数:

function storeCoordinatesImage($img_path, $coordinates){
$im = new imagick($img_path);
$im->setImageProperty("coords", $coordinates);
$im->writeImage($img_path);
}

function getCoordinatesImage($img_path){
$im = new imagick($img_path);
return $im->getImageProperty("coords");
}

如果我运行:

if(!storeCoordinatesImage("I.jpg", "hi")) echo "fal";
echo getCoordinatesImage("I.jpg");

什么都没有返回。

但是如果我运行:

$im = new imagick($img_path);
$im->setImageProperty("coords", "hello");
echo $im->getImageProperty("coords");

它返回“你好”。

所以写入图像一定有问题吗?尽管这些函数都没有返回 false。 (即他们都在工作)

最佳答案

使用图像的配置文件负载来存储任意数据。尽管存储在图像评论(即 JPG_COM)标签中的 JSON 有效载荷看起来很简单,但存在几种竞争技术来实现这一提议。最受欢迎的是 , 但我会推荐 .

可扩展元数据平台

在我看来,xmp 似乎设计过度了,但确实提供了一个平台来确保所有供应商专有信息通过 XML 命名空间分离。

维基百科有一个 great overview和 Adob​​e 的白皮书 (pdf) 很好地概述了供应商要实现的“注意事项”。

ImageMagick 不处理读/写配置文件有效负载之外的任何内容,因此您将负责实现 XML 管理器。

例如……

// A minimal XMP tempalte
$XMP_BASE='<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="XMPTk 2.8">'
.'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"></rdf:RDF>'
.'</x:xmpmeta>';

$xmp = new DOMDocument();
$xmp->loadXML($XMP_BASE);
// Create a <rdf:Descriptiom> & <Coords> DOM element.
foreach($xmp->getElementsByTagName('RDF') as $node) {
$coords = $xmp->createElement('Coords', 'hello');
$description = $xmp->createElement('rdf:Description');
$description->setAttribute('about', '');
$description->appendChild($coords);
$node->appendChild($description);
}

$img = new Imagick('rose:');
// Write profile to image.
$img->setImageProfile('xmp', $xmp->saveXML());
$img->writeImage('output.jpg');
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$img2 = new Imagick('output.jpg');
$xmp2 = new DOMDocument();
// Read profile from image.
$xmp2->loadXML($img2->getImageProfile('xmp'));
// Grab `Coords' value
foreach($xmp2->getElementsByTagName('Coords') as $coords) {
print $coords->textContent . PHP_EOL;
}
//=> "hello"

并且您可以使用identify 实用程序进行验证。

identify -verbose output.jpg | grep Coords
#=> Coords: hello

当然,如果图像已经包含 XMP 配置文件并且您不希望覆盖现有数据,您还需要实现 XML DOM“合并”方法。

关于php - 如何使用 php 将数据存储在图像中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48613330/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com