我想从pdf文件中检索关注attributes
。
到目前为止,我使用NSFileManager
提取了创建日期和修改日期。是否有任何方法可以在ios中获取此属性。
提前致谢。
这是我从我的mac拍摄的照片。这些是我想要提取的信息。
答案 0 :(得分:0)
CGPDFDocumentRef _pdfDocRef = CGPDFDocumentCreateWithURL((__bridge CFURLRef)(fileURL));
CGPDFDictionaryRef infoDic = CGPDFDocumentGetInfo(_pdfDocRef);
显示以下数据,
key = Title
key = Creator
key = Author
key = Producer
key = Trapped
key = CreationDate
key = ModDate