我想在 JPEG 和 PNG 文件中读取/写入 XMP 元数据。
我可以使用exiftool来做到这一点
~ $ exiftool -xmp-dc:description="FooBar" sample.png
1 image files updated
~ $ exiftool sample.png | grep "Description"
Description : FooBar
但是,我无法使用 imagemagick 读取 XMP 元数据
~ $ identify -verbose sample.png | grep "Description"
我编写 XMP 元数据的原因是它可以被 Adobe Products 读取。
问题
- 有没有办法使用 imagemagick 读取/写入 XMP 元数据?