有没有办法在PNG文件中添加一些额外的元数据,然后用PHP检索它?
与评论栏一样。
答案 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
命令。