Hi gapi,
In all likelihood, the pasted images are coming out as small as they are because of their limited resolution. The printout of a 655 x 480 image stretched to page width would look quite poor. Nevertheless, if that's what you want, you can re-format the lot in bulk with a macro like:
Code:
Sub ReformatPics()
Dim iShp As InlineShape
For Each iShp In ActiveDocument.InlineShapes
With iShp
.LockAspectRatio = True
.Width = InchesToPoints(6.5)
End With
Next iShp
End Sub