PDF到HTML脚本转换器

时间:2013-10-15 15:00:45

标签: html pdf converter

我在互联网上冲浪,但我找不到一个好的PDF ti HTML转换器。 你知道是否存在允许我在html中转换pdf的js或php脚本? 付费脚本或免费脚本,都可以。 请帮帮我,对不起我的英语。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

如果商业.net库(仅适用于Windows)适合您,请尝试使用Amyuni PDF Creator .Net。方法IacDocument.ExportToHtml5应该做你需要的。

文档页面中的示例代码:

System.IO.FileStream testfile = new System.IO.FileStream("TestFile2.pdf", FileMode.Open, FileAccess.Read, FileShare.Read);

pdfCreator1.Document.Open(testfile, "");

//Export all pages in the PDF file to HTML5 using the default options
pdfCreator1.Document.ExportToHTML5("test.html", Amyuni.PDFCreator.IacHtml5ExportOptions.acHtml5ExportOptionDefault);

免责声明:我目前在Amyuni Technologies工作