菜鸟教程小白 发表于 2022-12-13 09:09:08

ios - 在 Quartz 中创建 PDF 时计算页数的最佳方法是什么?


                                            <p><p>我的应用使用 Quartz 和 UIGraphics 从应用数据创建一个 pdf 页面。
基本上,我定义了一个 <code>CGRect docRect</code> 以适应该页面,然后在每次绘制时增加一个 <code>NSInteger yOffset</code> 。
如果 <code>yOffset</code> 大于 <code>docRect.size.height</code> 我会执行 <code>UIGraphicsBeginPDFPage()</code>。
这很好用,但是:</p>

<p>我想在底部绘制页数,例如“<strong>Page X of Y</strong>”。</p>

<p><strong>X</strong>显然很容易分辨,但是在我创建新页面的那一刻,我不知道<strong>Y</strong>可能有多大。</p>

<p>我看到了两种可能的解决方案:</p>

<ol>
<li><p>绘制完所有页面后,重复所有页面并添加计数器。
问题:据我所知,在调用 <code>UIGraphicsBeginPDFPage()</code> 之后,没有办法返回到以前的页面。有人可以否认吗?</p></li>
<li><p>提前计算所有 <code>yOffset</code> 增量以获得总页数。
可能,但恕我直言,这并不是一个优雅的解决方案。</p></li>
</ol>

<p>有人对这个问题提出建议吗?</p>

<p>提前致谢,m</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果您不想预先计算所有内容的大小以提前确定您将拥有多少页,一种选择是分两次渲染,就像您在问题中提到的那样。将第一遍渲染到 <em>temp.pdf</em> 并为页码计数器留出空间。</p>

<p>如果处理源内容是内存或性能负担,则第二遍可以转到 <em>final.pdf</em>,使用 <em>temp.pdf</em> 作为输入。循环遍历 <em>temp.pdf</em> 的所有页面,使用 <code>CGPDFDocumentGetNumberOfPages</code> 来获取您的页数。通过 <code>CGContextDrawPDFPage</code> 从 <em>temp.pdf</em> 绘制每一页,然后绘制页面计数器。</p>

<p>完成后,删除 <em>temp.pdf</em> 作为清理,一切就绪。</p>

<p><strong>更新</strong>:类似于这段未经测试的代码,从之前的一些工作中总结:</p>

<pre><code>...
CGPDFDocumentRef tempDocRef = CGPDFDocumentCreateWithURL((CFURLRef)tempPdfUrl);
size_t pageCount = CGPDFDocumentGetNumberOfPages(docRef);
CGContextRef finalPdfContext = CGPDFContextCreateWithURL((CFURLRef)finalPdfUrl, &amp;defaultPageRect, nil);

for (int pageNum = 1; pageNum &lt;= pageCount; pageNum++) {
CGPDFPageRef tempPageRef = CGPDFDocumentGetPage(tempDocRef, pageNum+1);
CGPDFContextBeginPage(finalPdfContext, nil);
CGContextDrawPDFPage(finalPdfContext, tempPageRef);

// do your page number rendering here, using pageNum and pageCount
...

CGPDFContextEndPage(finalPdfContext);
CGPDFPageRelease(tempPageRef);
}

CGPDFDocumentRelease(tempDocRef);
CGContextRelease(finalPdfContext);
...
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 Quartz 中创建 PDF 时计算页数的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7526363/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7526363/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 Quartz 中创建 PDF 时计算页数的最佳方法是什么?