View Single Post
 
Old 03-11-2012, 08:47 PM
macropod's Avatar
macropod macropod is online now Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

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
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote