Spire.Doc for .NET是一款由E-iceblue公司开发的专业的Word .NET类库。支持.net,WPF,Silverlight,
下载地址:http://www.e-iceblue.com/Download/download-word-for-net-now.html
安装后,找到spire.doc.dll。引入项目。
转换代码如下:
using Spire.Doc; Document doc = new Document(); doc.LoadFromFile(@"D:/1.docx"); //convert to image //doc.BuiltinDocumentPRoperties.PageCount word的页数,这个属性找了好久才找到啊,官方的demo没看到使用过这个属性。 for (int i = 0; i < doc.BuiltinDocumentProperties.PageCount; i++) { System.Drawing.Image image = doc.SaveToImages(i, Spire.Doc.Documents.ImageType.Metafile); image.Save(i.ToString()+".jpg", ImageFormat.Jpeg); }
这样就可以把每一页都转换成图片了,类型可以自己换。
官方的demo地址:http://www.e-iceblue.com/Tutorials/Spire.XLS/Spire.XLS-Program-Guide/Convert-Excel-to-Image-Worksheet-to-Image-in-C-VB.NET.html
这是.net的哦,别的话,自己搜吧。
新闻热点
疑难解答