7

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

喜欢评论字段。

4

1 回答 1

8

如果您安装了 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 库,但您始终可以使用 phpsystem命令。

于 2010-12-21T08:12:17.227 回答