将 UIView 上下文的位图内容复制到另一个 UIView 的位图内容
基本上我想要做的是将已经渲染的内容(使用 CGContextDrawPDFPage() 绘制到 UIView 的图形上下文中的 PDF)复制到类似的 UIView 上,而不必重新渲染 PDF。我的想法是,然后我能够在 UIView 上执行动画转换,然后更准确地重新渲染 PDF。对于这两个 UIView,我都使用大于屏幕的 CATiledLayer,以便在用户放大后更轻松地重新渲染 PDF(如果这有什么区别)。
有什么建议吗?我有点迷失在这里。
Basically what I want to do is copy the already rendered content (a PDF drawn into the UIView's graphics context using CGContextDrawPDFPage()) onto a similar UIView, without having to re render the PDF. The idea is, that I'd then be able to perform an animated transform on the UIView and later re render the PDF with more accuracy. For both UIViews I'm using a larger-than-screen CATiledLayer to make it easier to rerender the PDF once the user zooms in, if that makes any difference.
Any tips? I'm kind of lost here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您使用类似于以下的代码在图形上下文中渲染了 PDF 页面
此代码会将 pdfView 的内容保存到 UIImage
Assuming you have rendered a PDF page in a graphics context using code similar to the following
This code will save the contents of pdfView to a UIImage