如果您安装了 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
命令。