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

Proud member of

PPTools

Image Export converts PowerPoint slides to high-quality images.

PPT2HTML exports HTML even from PowerPoint 2010 and 2013, gives you full control of PowerPoint HTML output, helps meet Section 508 accessibility requirements

Merge Excel data into PowerPoint presentations to create certificates, awards presentations, personalized presentations and more

Resize your presentations quickly and without distortion

Language Selector switches the text in your presentation from one language to another

FixLinks prevents broken links when you distribute PowerPoint presentations

Shape Styles brings styles to PowerPoint. Apply complex formatting with a single click.

Insert a picture at the correct size

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.


Did this solve your problem? If so, please consider supporting the PPT FAQ with a small PayPal donation.
Page copy protected against web site content infringement by Copyscape Contents © 1995 - 2022 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.

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_Insert_a_picture_at_the_correct_size.htm
Last update 07 June, 2011
Created: