是否可以在图像中保存元数据?
我们在服务器上创建拇指图像,我正在寻找一种在该图像中保存元数据(文本)的方法。 那可能吗?
此时我们使用 PHP 并创建 JPG 图像。
We create thumb images on our server and I'm looking for a way to save metadata (text) in that image. Is that possible?
At this moment we use PHP
and we create JPG
images.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您的问题与在php中写入exif数据相同。
我的答案是:
You question is the same as writing exif data in php.
My answer is:
我希望这可以帮助你!
我修改了此处找到的类(感谢德伯)。
所有对 IPTC 标签的引用都可以从此 PDF< /a>
代码 (PHP >= 5.4):
I hope this helps you!
I modified a class that I found here (thanks debers).
And all the references to IPTC tags can be readed from this PDF
Code (PHP >= 5.4):
是的,这是可能的。
您可以使用全能的 Exiftool perl 实用程序,它可以处理几乎所有已知的标签集,包括标准标签(EXIF、IPTC、Adobe 的 XMP 等)和专有标签。
Yes, it's possible.
You can use the almighty Exiftool perl utility, which handles nearly every known set of tags, both standard(EXIF, IPTC, Adobe's XMP, etc) and proprietary ones.
EXIF 或重复使用旧的“数据隐藏”概念,速记
EXIF or reuse an old "data-hiding" concept, Stenography
在应用程序文件中嵌入 XMP 元数据 (PDF)
Embedding XMP Metadata in Application Files (PDF)