寻找支持多种输入类型的PDF转换器
在我们公司,我们为客户开发了一个程序,用于获取文件并将其传输给我们。
我们需要支持多种类型的文件以静默方式转换为 pdf(用于签名)。到目前为止,我们一直在使用 pdf Creator,但它不稳定并且有很多错误。
我们想购买一个可以执行诸如dynamicpdf之类的功能的.dll(非常昂贵),因为我们自己开发它需要很长时间。
该解决方案需要支持 jpeg、gif、bmp、tiff、html、htm、mht 等图像类型。
对于自动创建 PDF 的可行解决方案有什么想法吗?
In our company, we develop a program for our clients that takes files and transfer it to us.
We need to support many types of files to silently convert to pdf (for signing). We've used, until now, pdf creator, but it's not stable and has many bugs.
We want to buy a .dll that can do things like dynamicpdf (very expensive), as developing it ourselves will take to long.
This solution needs to support image types like jpeg, gif, bmp, tiff, html, htm, mht and many more.
Any thoughts on viable solutions to automate the creation of PDFs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许您可以尝试将它们打印到 Postscript 文件,然后将 PS 文件转换为 PDF。我认为这两个问题都简单得多:
对于打印,您可以使用通常编辑/查看这些文件的程序的打印功能。
对于 PS 到 PDF 的转换,有很多标准工具。
Maybe you could try printing them to a Postscript file, and then converting the PS file to a PDF. I think both those problems are a lot simpler:
For printing you can use the print functions of the programs which normally edit/view those files.
For converting PS->PDF there are lots of standard tools.
无耻的插件,因为我在这个产品上工作,但尝试 PDF 转换服务< /a>.可扩展、可靠、针对服务器使用进行了优化,始终添加新格式 (查看新的 DXF 和 DWG 支持),支持水印、PDF 安全性等。具有基于 Web 服务的界面,因此可以与 C#、Java 和许多其他平台很好地配合。
此处的代码示例。
Shameless plug, as I worked on this product, but try the PDF Conversion Services. Scalable, reliable, optimised for server use, adds new formats all the time (see new DXF and DWG support), supports watermarking, PDF Security etc. Has a web services based interface, so works well with C#, Java and many other platforms.
Code sample here.