How to add extra meta data to PNG?

爷,独闯天下 提交于 2019-11-29 07:34:13

If you have ImageMagick installed, it comes with two utilities: mogrify and identify.

To add comments:

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

To retrieve comments:

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

I don't know if mogrify/identify functions are available as PHP libraries, but you can always use the php system command.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!