这可能是一个愚蠢的问题,但请帮助我。我只想知道如何提取保存在问题的 contentURL (报亭框架)上的 PDF 文档的页数。以必须有效的方式,因为我只想正确编号一些我也保存在 contentURL 中的页面。换句话说:不打开pdf是否可以知道它的页数?
Best Answer-推荐答案 strong>
看看这个:https://developer.apple.com/library/ios/documentation/GraphicsImaging/Reference/CGPDFDocument/Reference/reference.html
有这个方法:
size_t CGPDFDocumentGetNumberOfPages(CGPDFDocumentRef document)
这会给你页数。
这样实现:
NSURL *pdfUrl = [NSURL fileURLWithPath:yourPath];
CGPDFDocumentRef document = CGPDFDocumentCreateWithURL((CFURLRef)pdfUrl);
关于ios - Objective-c,获取一个pdf文档的页数,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/21265902/
|