zoukankan      html  css  js  c++  java
  • 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;

  • 相关阅读:
    Nginx的Mainline version、Stable version、Legacy version的版本区别
    十个程序员必备的网站推荐
    各大OJ题目分类
    ubuntu 12 安装bcm 43142无线网卡驱动
    unp.h
    Linux优秀软件整理
    陈皓一起写Makefile 概述
    开源资源目录
    (三)鸟哥Linux读书笔记
    CSS3实现选项卡
  • 原文地址:https://www.cnblogs.com/daizhipeng/p/10685195.html
Copyright © 2011-2022 走看看