spire.presentation支持把powerpoint文件转换成html格式。
原始文档截图:
全部代码:
c#
//创建ppt对象
presentation ppt = new presentation();
//加载文件
ppt.loadfromfile(@"sample.pptx");
//保存到html文件
ppt.savetofile("convertppttohtml.html", fileformat.html);
vb.net
'创建ppt对象
dim ppt as new presentation()
'加载文件
ppt.loadfromfile("sample.pptx")
'保存到html文件
ppt.savetofile("convertppttohtml.html", fileformat.html)
结果文档截图: