绘图到现有 PDF
当我执行 CGContextCreateWithURl(url) 时,即使我传递了现有文件的 url,它也会创建空上下文。如何获取现有PDF文件的上下文?
When i did CGContextCreateWithURl(url)
it created empty context even though i passed url of existing file. How to get the context of existing PDF file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据我的经验,您实际上无法直接绘制到现有的 pdf:
不是最流畅的,但它可以工作。
From my experience you can't actually draw directly to an existing pdf:
Not the smoothest, but it works.
URL 不是输入。这是您希望上下文将生成的 PDF 写入其中的位置。
从文档中:
the URL isn't an input. It's where you want the context to write the resulting PDF to.
From the documentation: