如何向PNG添加额外的元数据?

时间:2010-12-21 07:50:21

标签: php image png image-manipulation file-manipulation

有没有办法在PNG文件中添加一些额外的元数据,然后用PHP检索它?

与评论栏一样。

1 个答案:

答案 0 :(得分:6)

如果您安装了ImageMagick,它会附带两个实用程序:mogrify和identify。

添加评论:

$ mogrify.exe -comment "My test comment" plogo.png

要检索评论:

$ identify.exe -verbose plogo.png  | grep -i "comment:"
    comment: My test comment

我不知道mogrify / identify函数是否可用作PHP库,但您始终可以使用php system命令。