菜鸟教程小白 发表于 2022-12-13 06:00:24

ios - Objective-c,获取一个pdf文档的页数


                                            <p><p>这可能是一个愚蠢的问题,但请帮助我。我只想知道如何提取保存在问题的 <code>contentURL</code> (报亭框架)上的 PDF 文档的页数。以必须有效的方式,因为我只想正确编号一些我也保存在 <code>contentURL</code> 中的页面。换句话说:不打开pdf是否可以知道它的页数?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>看看这个:<a href="https://developer.apple.com/library/ios/documentation/GraphicsImaging/Reference/CGPDFDocument/Reference/reference.html" rel="noreferrer noopener nofollow">https://developer.apple.com/library/ios/documentation/GraphicsImaging/Reference/CGPDFDocument/Reference/reference.html</a> </p>

<p>有这个方法:</p>

<pre><code>size_t CGPDFDocumentGetNumberOfPages(CGPDFDocumentRef document)
</code></pre>

<p>这会给你页数。</p>

<p>这样实现:</p>

<pre><code>NSURL *pdfUrl = ;   
CGPDFDocumentRef document = CGPDFDocumentCreateWithURL((CFURLRef)pdfUrl);
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Objective-c,获取一个pdf文档的页数,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/21265902/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/21265902/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Objective-c,获取一个pdf文档的页数