如何使用 PDF::API2 将 EPS 嵌入到 PDF 中?
显然,我想避免将光栅图像作为中间步骤。
Obviously, I want to avoid raster images as intermediate step.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
显然,我想避免将光栅图像作为中间步骤。
Obviously, I want to avoid raster images as intermediate step.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我从来没有尝试过这个,但我认为你必须首先将 EPS 文件转换为 PDF(使用 Ghostscript 或其他),然后使用
importPageIntoForm
或importpage
(具体取决于您要执行的操作)。您需要一个 PostScript 解释器来处理 EPS,因为 PostScript 是一种完整的编程语言,而 PDF 不是。I've never tried this, but I think you'd have to first convert the EPS file to a PDF (using Ghostscript or something), and then use
importPageIntoForm
orimportpage
(depending on exactly what you're trying to do). You need a PostScript interpreter to handle EPS, because PostScript is a complete programming language, and PDF isn't.