如何使用AppleScript获取存在于xmp文件中的评级。xmp文件属于CR2文件。我使用photoshop cc 2017库进行了尝试。但我不能让它工作。
发布于 2017-03-28 17:47:01
我一直发现exiftool对于读/写XMP很方便
http://www.sno.phy.queensu.ca/~phil/exiftool/
如果你需要从AppleScript访问它,那么你可以使用如下命令:
set theFile to choose file
set theInfoFromExiftool to do shell script "/usr/local/bin/exiftool -CreateDate " & quoted form of POSIX path of theFile当然,您需要将CreateDate更改为您感兴趣的任何标记的名称。
希望这能帮上忙。
https://stackoverflow.com/questions/42949394
复制相似问题