OLE pdf 控件
我需要一个低级 OLE 控件来读取、创建和修改 pdf 文件。我将把它与 Visual FoxPro 一起使用。我所说的低级是指我不需要在客户端计算机上安装任何额外的软件。
长话短说,我需要像 iText 这样的东西。
最好是免费或者便宜的。 谢谢。
I need a low level OLE control for reading, creating and modifying pdf files. I will use it with Visual FoxPro. By low level I mean that I won't need any extra software to install on the client machine.
Long story short, I need something like iText.
Preferably free or cheap.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
QuickPDF 包含一个基于纯 Win32 DLL 的版本,价格相当便宜,价格为 249 美元,并且没有运行时许可证费用。您只需将 DLL 复制到应用程序所在的目录中即可。
www.quickpdf.com
QuickPDF includes a pure Win32 DLL based version and is reasonably cheap at $249 with no runtime license fees. You would just need to copy the DLL in the same directory as your application.
www.quickpdf.com
我不知道你所说的“打开”DLL 是什么意思,但是,VFP 可以通过 DECLARE 语句调用 DLL 来公开它们......许多 Windows API 调用都经常这样做。
然而,您处理 PDF 进行修改的具体需要提出了另一个问题......您打算尝试“修改”什么?
I don't know what you mean about "open"ing DLLs, however, VFP CAN make calls to DLLs via DECLARE statements to expose them... its done quite regularly with many Windows API calls.
However, you specific need of dealing with PDFs to modify poses another question... What is it you plan on trying to "modify"?