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)

4

1 回答 1

2

使用 GD 打开并保存图像。这应该删除所有元数据,因为 GD lib 无法处理它。

如果这不能解决问题,请尝试任何

于 2012-06-28T09:10:04.073 回答