Sub Button1_Click()
Dim o As Shape, pic As String
Set o = Sheet2.Shapes("Rectangle 1")
pic = "C:\Users\Deepak\Pictures\may_poster_14_X_19_inch.jpg"
With Sheet2.Pictures.Insert(pic)
With .ShapeRange
.LockAspectRatio = msoFalse
.Height = o.Height '75
.Width = o.Width '95
End With
.Left = o.Left
.Top = o.Top
.Placement = 1
.PrintObject = True
End With
End Sub