绘图到现有 PDF

发布于 2024-12-03 11:00:07 字数 84 浏览 0 评论 0原文

当我执行 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小矜持 2024-12-10 11:00:07

根据我的经验,您实际上无法直接绘制到现有的 pdf:

  1. 将 pdf 转换为图像
  2. 将新内容绘制到该图像
  3. 将附加图像转换为 pdf

不是最流畅的,但它可以工作。

From my experience you can't actually draw directly to an existing pdf:

  1. Convert pdf to image
  2. Draw new content to that image
  3. Convert appended image to pdf

Not the smoothest, but it works.

李不 2024-12-10 11:00:07

URL 不是输入。这是您希望上下文将生成的 PDF 写入其中的位置。

从文档中:

网址
  一个 Core Foundation URL,指定要放置生成的 PDF 文件的位置。

the URL isn't an input. It's where you want the context to write the resulting PDF to.

From the documentation:

url
  A Core Foundation URL that specifies where you want to place the resulting PDF file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文