Supercharge your PowerPoint productivity with

Supercharge your PPT Productivity with PPTools - Click here to learn more.

Tell me about PPTools

Insert a picture at the correct size


PPTools
Shape Styles brings the power of styles to PowerPoint. Apply complex formatting with a single click
Merge Excel, CSV or tab-delimited data into PowerPoint presentations to create certificates, awards presentations, personalized presentations and more
FixLinks prevents broken links when you distribute PowerPoint presentations
Optimizer saves disk space and bandwidth, shrinks your PowerPoint presentations to the right size for email, screenshow or printing
PPT2HTML gives you full control of PowerPoint HTML output, helps meet Section 508 accessibility requirements
Prep4PDF preserves interactivity in PowerPoint presentations when you convert to PDF
Image Export converts PowerPoint slides to JPG, PNG, GIF, WMF and more

PowerPoint doesn't allow you to directly use VBA to insert a picture at whatever size it'd come in at were you to do the same job manually.

Instead, it requires you to provide a height and width for the newly inserted picture.

Hard to do, when you don't know the height/width to start with. If you get the proportions wrong, you'll distort the picture.

So here's what you do. This will bring the picture in at whatever size it would normally come in if inserted manually.

Sub InsertAndSizePicture()

    Dim oPicture As Shape
    Dim FullPath As String
    Dim oSl As Slide

    ' Set this to the full path to picture.
    FullPath = "C:\My Documents\Pictures\MyPhoto.JPG"

    Set oSl = ActiveWindow.Selection.SlideRange(1)

    ' Insert the picture at an arbitrary size;
    ' PowerPoint requires you to supply *some* height and width for the picture
    Set oPicture = oSl.Shapes.AddPicture(FileName:=FullPath, _
       LinkToFile:=msoFalse, _
       SaveWithDocument:=msoTrue, _
       Left:=0, Top:=0, _
       width:=100, height:=100)

    ' Rescale the picture to its "natural" slze
    With oPicture
       .Scaleheight 1, msoTrue
       .Scalewidth 1, msoTrue
    End With

    Set oPicture = Nothing
    Set oSl = Nothing

End Sub

See How do I use VBA code in PowerPoint? to learn how to use this example code.


Page copy protected against web site content infringement by Copyscape Contents © 1995-2008 Stephen Rindsberg, Rindsberg Photography, Inc. and members of the MS PowerPoint MVP team. You may link to this page but any form of unauthorized reproduction of this page's contents is expressly forbidden.

Español    Deutsch    Français    Português    Italiano    Nederlands    Greek    Japanese    Korean    Chinese



Supercharge your PPT Productivity with PPTools


content authoring & site maintenance by
Friday, the automatic faq maker (logo)
Friday - The Automatic FAQ Maker

Insert a picture at the correct size
http://www.pptfaq.com/FAQ00329.htm
Last update 15 September, 2007