Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

is there a way to add some extra metadata to a PNG file and then retrieve it with PHP ?

like Comment field.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
357 views
Welcome To Ask or Share your Answers For Others

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...