Aspose.Words 操作 Word檔案
阿新 • • 發佈:2019-01-06
傳統操作office我們可以引用com元件。不過這樣做有幾個不方便的地方:
- 要裝office
- 然後要做很多的設定,經常出現本地可以,部署到伺服器就有問題。如果遷移伺服器,也是要進行重複的配置
- 程序釋放。運用不當會導致佔用記憶體過多。嚴重的可導致伺服器宕機
2、轉換成html格式Document doc = new Document(path); doc.Save("file.docx");
var options = new HtmlSaveOptions(SaveFormat.Html)
{
ExportTextInputFormFieldAsText = false,
ExportImagesAsBase64 = true
};
doc.Save("file.html", options);