2

There are diverse formats to add meta-Information to image (and video) files. nearly every digitalcamera add them to fotos. And sometimes people don't want them to be published.

The standards I found so far are:

  1. Exif
  2. IPTC-NAA
  3. XMP

Are there more? (e.g. not image specific, but general meta standard, that can be attached to the end of every file)

Reading the information that is saved, using PHP seems to be possible for the three named formats.

But how can the data be manipulated (changed, added)

How can I delete all possible meta-data using PHP? (i.e. all infomation that does not belong to the image itself)

Cœur
  • 37,241
  • 25
  • 195
  • 267
R_User
  • 10,682
  • 25
  • 79
  • 120
  • You are not talking about of how to remove copyrights?Fortunately there are other possibilities. If you bear performance in mind than write all data in a database/flatfile and write a specific comment and the copyright back to the image's IPTC. you will discover all you need at php.net. – B.F. Aug 19 '14 at 10:55

1 Answers1

2

Open and save the image with GD. This should remove all meta data because GD lib cannot handle it.

If that doesn't cut it, try any of

Gordon
  • 312,688
  • 75
  • 539
  • 559