以编程方式调用“保存到 PDF...”床单
我需要实现一个功能,在特定条件下,“保存到 PDF”对话框会显示并显示。用户可以将文档保存为 PDF。这是如何在 Objective C、C 或 C++(即 Mac OS X 中)中实现的? (他们中的任何一个都很好)。
I need to implement a feature that under a certain condition the "Save to PDF" Dialog shows up & the user can save their document to PDF. How is this achieved in Objective C, C or C++ i.e in Mac OS X? (anyone of them is good).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在文本编辑中,有一个另存为 PDF 的选项。所以你也许可以在苹果提供的文本编辑源中找到如何做到这一点。
In textedit, there's an option to save as PDF. So you might be able to find how to do it in the textedit source provided by apple.
您只需编写一个符合PDF 规范的文件来自 Adobe。 (现在也是 ISO 标准)。 Apple 在这里提供了一个 API。
You simply need to write a file which conforms to the PDF Specification from Adobe. (Now also an ISO Standard). Apple provides an API here.