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)
}
word插入图片教程:1、Word2019软件进行明,用该软件打开Word文档,鼠标点击需要插入图片的地方,然后找到菜单栏中的“插入”选项,然后点击该选项
2、进入“插入”界面,找到“图片”选项并点击该选项,在“插入图片来自”栏下选择图片来自的地方,这里选择“此设备”选项即电脑里自定义的图片,通过 *** 作自定义图片来演示如何给Word文档插入图片;当然也可以选择“联机图片”选项即通过网络途径搜索到的图片来给Word文档插入图片。
3、进入“插入图片”界面,找到需要插入图片的目录,选择需要插入的图片,然后点击“插入”按钮。
4、此时Word文档中就插入了自定义的图片,可以利用Word对该图片进行适当地修饰使图片展示效果更好。
第一步 将光标放在需要插入图片的位置
第二步 点击工具档中的插入模块后,选定图片选项
第三步 打开图片下拉框选定图片文件来源
第四步 找到图片文件存放位置后,点击打开
图片插入
第五步 调整图片大小,完成图片插入
图片尺寸调整方式
第六步 手动调整图片示例
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)