如何在Word文档中添加图片并调整其大小和位置?

时间:2014-09-17 21:48:37

标签: image vba excel-vba word-vba excel

设置是:带有一些用户名和文件名的Excel表(因为文件是某些目录中的照片)。目的是通过将模板中的变量更改为真实用户名并向其添加照片,基于所选行的数据创建Word文档。问题在于定位和设置该照片的属性。我使用Selection.InlineShapes.AddPicture方法由于Selection.Shapes.AddPicture方法返回错误(运行时错误'438':对象不支持此属性或方法)给我。所以,以下是我的实际代码,我希望有人可以帮助我。提前谢谢!

Option Explicit

Sub CreateDocs()

    Const wdReplaceAll = 2

    Dim user_name As String, user_surname As String, user_patronymic As String
    Dim user_type As String, user_type_num As Integer, user_country As String
    Dim user_pic As String, pic As Object
    Dim wrd As Object, doc As Object
    Dim length As Integer
    Dim ind As Integer

    Dim pict As Object

    ind = ActiveCell.Row

    With Sheets("SHEET_NAME")
        user_name = .Cells(ind, 4)
        user_surname = .Cells(ind, 3)
        user_type = .Cells(ind, 22)
        user_pic = .Cells(ind, 25)
    End With

    Set wrd = CreateObject("Word.Application")
    wrd.Visible = True

    Set doc = wrd.Documents.Add(ThisWorkbook.Path & "\SUBPATH\TMPL.dotx")

    Set pic = wrd.Selection.InlineShapes.AddPicture( _
        Filename:=ThisWorkbook.Path & "\SUBPATH\" & user_pic, _
        LinkToFile:=False, _
        SaveWithDocument:=True _
    )
    pic.ConvertToShape
      ' THE NEXT 4 CODE LINES DOESN'T WORK AT ALL
      ' I have the same error here:
      ' Run-time error '438': Object doesn't support this property or method
    pic.LockAspectRatio = msoTrue
    pic.Left = 197
    pic.Top = 191
    pic.Width = 179

    With wrd.Selection.Find
        .ClearFormatting
        .Replacement.ClearFormatting
        .Text = "%user_name%"
        .Replacement.Text = user_name
        .Execute Replace:=wdReplaceAll
        .Text = "%user_surname%"
        .Replacement.Text = user_surname
        .Execute Replace:=wdReplaceAll
        .Text = "%user_type%"
        .Replacement.Text = user_type
        .Execute Replace:=wdReplaceAll
    End With

    doc.SaveAs ThisWorkbook.Path & "\SUBPATH\" & user_name & ".docx"

    doc.Close False
    Set doc = Nothing

    wrd.Quit False
    Set wrd = Nothing

End Sub

1 个答案:

答案 0 :(得分:1)

尝试创建另一个变量(让我们称之为picShape)并将其设置为ConverttoShape的结果。所以,

Dim picShape As Object
.....
Set picShape = pic.ConvertToShape
picShape.LockAspectRatio = msoTrue
picShape.Left = 197
picShape.Top = 191
picShape.Width = 179

我希望我能为此提供更全面的解释,但我很少使用后期绑定。从Local窗口的外观来看,它看起来不像pic.ConvertToShape实际上改变了pic的基础类型(尽管它确实将实际图片从inlineshape更改为shape)。因此,要么您无法在此时更改类型,要么此方法不会以您期望的方式影响应用它的变量。