如何使用 CGPDFDocument 的 documentAttributes
How to use documentAttributes of CGPDFDocument
根据Apple's documentation
CGPDFDocument
有一个名为 documentAttributes
:
的变量
var documentAttributes: [AnyHashable : Any]? { get set }
我无法了解如何使用它来获取或设置 Swift 中 PDF 的文档属性。 Xcode 不提供它作为点后的自动完成,例如myPDF.documentAttributes
.
如何使用?我正在尝试 get/set 文档元数据,例如作者、创作者、主题。
再次查看了您提供的 link。不是 CGPDFDocument
,而是 Quartz.PDFDocument
。这是访问它的一种方法:
let pdfDoc = PDFDocument(url: URL(fileURLWithPath: "/path/to/file.pdf"))!
if let attributes = pdfDoc.documentAttributes {
let keys = attributes.keys // the set of keys differ from file to file
let firstKey = keys[keys.startIndex] // get the first key, whatever the turns out to be
// since Dictionaries are not ordered
print("\(firstKey): \(attributes[firstKey]!)")
print("Title: \(attributes["Title"])")
}
密钥列表因文件而异,因此您需要检查每个密钥并在密钥不可用时处理nil
。
要更改属性:
pdfDoc.documentAttributes?["Title"] = "Cheese"
pdfDoc.write(to: URL(fileURLWithPath: "/path/to/file.pdf")) // save the PDF file
根据Apple's documentation
CGPDFDocument
有一个名为 documentAttributes
:
var documentAttributes: [AnyHashable : Any]? { get set }
我无法了解如何使用它来获取或设置 Swift 中 PDF 的文档属性。 Xcode 不提供它作为点后的自动完成,例如myPDF.documentAttributes
.
如何使用?我正在尝试 get/set 文档元数据,例如作者、创作者、主题。
再次查看了您提供的 link。不是 CGPDFDocument
,而是 Quartz.PDFDocument
。这是访问它的一种方法:
let pdfDoc = PDFDocument(url: URL(fileURLWithPath: "/path/to/file.pdf"))!
if let attributes = pdfDoc.documentAttributes {
let keys = attributes.keys // the set of keys differ from file to file
let firstKey = keys[keys.startIndex] // get the first key, whatever the turns out to be
// since Dictionaries are not ordered
print("\(firstKey): \(attributes[firstKey]!)")
print("Title: \(attributes["Title"])")
}
密钥列表因文件而异,因此您需要检查每个密钥并在密钥不可用时处理nil
。
要更改属性:
pdfDoc.documentAttributes?["Title"] = "Cheese"
pdfDoc.write(to: URL(fileURLWithPath: "/path/to/file.pdf")) // save the PDF file