ibcadmin 发表于 2016-5-24 09:20:52

C# aspose.words HTML转换为WORD

说明:引用第三方组件aspose.words,自行百度下载。



Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
//模拟HTML页面,请假装这是html页面
builder.InsertHtml(@"<html><body><img src='logo.jpg'></body></html>");
doc.Save("需要保存的绝对路径,如: c://1.doc");


此函数也会将网页图片转换为word图片

页: [1]
查看完整版本: C# aspose.words HTML转换为WORD