gpt4 book ai didi

ios - 获取文档的 CGPDFDocumentRef 名称

转载 作者:可可西里 更新时间:2023-11-01 04:40:35 26 4
gpt4 key购买 nike

是否可以从 CGPDFDocumentRef

中检索文档的名称

最佳答案

“文档名称”是指文档文件名还是标题?

如果元数据中包含文档“标题”,则可以像这样检索它:

    char *titleKey = "Title";
CGPDFStringRef titleStringRef;

CGPDFDictionaryRef info = CGPDFDocumentGetInfo(myDocumentRef);
CGPDFDictionaryGetString(info, titleKey, &titleStringRef);
const unsigned char *titleCstring = CGPDFStringGetBytePtr(titleStringRef);

printf("title: %s", titleCstring);

其他键在 PDF 1.7 规范的第 10.2 节中列出:Adobe PDF Reference Archives

关于ios - 获取文档的 CGPDFDocumentRef 名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5881921/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com