word模板导出的几种方式:第三种:标签替换(DocX组件读取与写入Word)

dll文件下载地址:https://files-cdn.cnblogs.com/files/daizhipeng/DocX.rar

DocX wordDocumentOld = DocX.Load(System.Web.HttpContext.Current.Request.MapPath(templateName));//加载已有的word模板
DocX wordDocument = wordDocumentOld;  //复制加载的word模板,以免污染原始模板
//标签替代
wordDocument.InsertAtBookmark(info.Name, "Name");//向模板中的书签Name中写入数据

//加入图片,插入到表格中
try
{
Novacode.Image pImag = wordDocument.AddImage(System.Web.HttpContext.Current.Request.MapPath(info.zdImg));
Picture SourceImage = ChangeSize(pImag.CreatePicture(), 120, 140);
//表格位置插入
Table wordTable = wordDocument.Tables[0];//获取模板中的第一个表格
Paragraph paragraph = wordTable.Rows[3].Cells[3].Paragraphs[0].InsertPicture(SourceImage);
}
catch(Exception ex){}
//签名
var bookMark = get_BookMarkByName(wordDocument, "AutographImg");
Novacode.Image qmImag = wordDocument.AddImage(System.Web.HttpContext.Current.Request.MapPath(info.AutographImg));
Picture AutographImg = ChangeSize(qmImag.CreatePicture(), 180, 40);
bookMark.Paragraph.InsertPicture(AutographImg);
//申请日期
wordDocument.InsertAtBookmark(DateTime.Now.ToString("yyyy年MM月dd日"), "ApplyTime");
wordDocument.SaveAs(System.Web.HttpContext.Current.Request.MapPath(savePath));     //将写好的word另存到指定路径    
Path = savePath;

转载于:https://www.cnblogs.com/daizhipeng/p/10685195.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值