使用CGImageMetadataSetTagWithPath设置exif的用户评论字段的路径是什么?
https://developer.apple.com/documentation/imageio/1465409-cgimagemetadatasettagwithpath
Best Answer-推荐答案 strong>
它适用于 exif:UserComment :
guard let tag = CGImageMetadataTagCreate(
kCGImageMetadataNamespaceExif,
kCGImageMetadataPrefixExif,
kCGImagePropertyExifUserComment,
.string,
"my exif comment" as CFString) else { fatalError("Metadata tag not created") }
let metadata = CGImageMetadataCreateMutable()
CGImageMetadataSetTagWithPath(
metadata,
nil,
"exif:UserComment" as CFString,
tag)
编辑
在撰写本文时,如果想要 ImageIO 函数的文档,则应 Cmd 并单击其中的每一个函数。它的格式似乎没有更新,因此没有显示在 Xcode 或其网络界面 (developer.apple.com) 中。
我们在 CGImageMetadataCopyTagWithPath 函数的文档中提供了有关如何形成路径的更多信息。摘录:
A string representing a path to the desired tag. Paths consist of a tag prefix (i.e. "exif") joined with a tag name (i.e. "Flash") by a colon (":"), such as CFSTR("exif:Flash").
我们可以使用以下代码来代替对值进行硬编码:
let path = "\(kCGImageMetadataPrefixExif):\(kCGImagePropertyExifUserComment)" as CFString
关于ios - 使用CGImageMetadataSetTagWithPath设置exif的用户评论字段的路径是什么?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/44835500/
|