通过 php 将元数据附加到新创建的图像?
我有一个 php 脚本,可以为未登录的用户创建临时水印图像。原始图像包含我想保留的 IPTC(元数据)信息,但是,当应用水印并调用 imagejpeg 时,所有元数据都会被删除。
有什么想法如何在调用 imagejpeg 后维护元数据或重新应用元数据吗?
谢谢
I have php script that creates a temporary watermark image for users that are not logged in. The original image contains IPTC (metadata) information that I would like to retain, however, when the watermark is applied and imagejpeg is called, all metadata is removed.
Any ideas how I can maintain the metadata or re-apply metadata after imagejpeg gets called?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这正是 iptcparse 和 iptcembed 函数的用途。
This is just what the iptcparse and iptcembed functions are for.