用以下方法将一个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);
   }

相关文章:

  • 2022-02-07
  • 2022-02-11
  • 2021-05-29
  • 2021-07-09
  • 2022-12-23
  • 2021-07-23
  • 2022-12-23
猜你喜欢
  • 2022-02-16
  • 2021-12-15
  • 2021-12-28
  • 2021-10-12
  • 2021-12-05
  • 2021-06-23
  • 2021-12-23
相关资源
相似解决方案