首页 > 学院 > 开发设计 > 正文

使用Aspose.Words把word转成图片

2019-11-14 13:57:17
字体:
来源:转载
供稿:网友

直接上代码

Document doc = new Document("f://333.doc");ImageSaveOptions iso = new ImageSaveOptions(SaveFormat.Jpeg);iso.Resolution = 128;iso.PRettyFormat = true;iso.UseAntiAliasing = true; for (int i = 0; i < doc.PageCount; i++){      iso.PageIndex = i;      doc.Save("D:/test/test" + i + ".jpg", iso);}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表