zoukankan      html  css  js  c++  java
  • 在asp.net生成的word文档中插入图片(转)

    用以下方法将一个html文件保存成word文件并且再查入一张图片
    object Nothing=System.Reflection.Missing.Value;
       object srcFileName=@"D:\aa.html";
       object dstFileName=@"d:\li.doc";
       object objt=true;
       Word.Application wordApp=new Word.ApplicationClass();
       Word.Document wordDoc=null;
       object format=Word.WdSaveFormat.wdFormatDocument;
       try
       {
        wordDoc=wordApp.Documents.Open(ref srcFileName,ref format, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing);
        //图片
        Word.Shape oShape= wordDoc.Shapes.AddPicture("D:\\DL_01.gif",ref Nothing,ref objt,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing);
        oShape.WrapFormat.Type =Word.WdWrapType.wdWrapSquare;
        
       
        //将htm文件save as成doc文件
        wordDoc.SaveAs(ref dstFileName,ref format, ref Nothing, ref Nothing, ref Nothing, ref Nothing,  ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing);   
       }
       finally
       {
        wordDoc.Close(ref Nothing, ref Nothing, ref Nothing);
        wordApp.Quit(ref Nothing, ref Nothing, ref Nothing);
       }
  • 相关阅读:
    串口通讯编程一日通2(Overlapped IO模型)
    串口通讯编程一日通1(整合资料)
    Overlapped I/O模型深入分析(转)
    JVM7、8详解及优化
    vmstat工具
    spring 每个jar的作用
    Linux查看内存使用情况
    mysql datetime与timestamp精确到毫秒的问题
    eclipse UTF-8
    java.security
  • 原文地址:https://www.cnblogs.com/pyt5208/p/556986.html
Copyright © 2011-2022 走看看