How To: Convert a PowerPoint Presentation from 4:3 ratio to 16:9 without distorted or stretched images
It always sucks to show up to a conference with a slide deck that looks lovely with lots of pictures and evocative hipster stock photography all nicely formatted for a 4:3 ratio (1024x768 pixels is common) and then find out their projectors are 16x9 and run something like 1280x720 pixels.
Nobody wants to be THIS stretchy guy:
It is true that some people have a genetic inability to see that 4:3 content has been uncomfortably stretched to fit a 16:9 screen. We have a name for these people. They are called "Bad People.™"*
As an aside, there are few sadder technical things than 4:3 content stretched across an expensive 16:9 widescreen HDTV. From electronic stores to hotel lobbies, airport status displays to café menus. Make it stop.
What's the easiest way to convert your 4:3 slide deck to 16:9 in a pitch and still have your images look nice? There' s a number of ways on the internet but they all involve "math" and "ratios" and "thought." Nonsense. Too hard. Here's what I do.
Step 0 - Switch to 16:9 and see bad images.
Click Design | Page Setup and switch from 4:3 to 16:9. Other folks say to enter in custom numbers and do multiplication. Hang in there, this is easier.
At this point, all your images WILL be stretched out.
Step 1 - Fix image ratios without messing up their sizes
Here's the trick. Right click on an image and select Size and Position. From this dialog, click in the Height box. Now, just click up once and down once. As long as the Lock Aspect Ratio checkbox is checked, just changing the scale by 1 step and then switching back will fix your image. You can do it with your keyboard even faster.
Here's trick #2. You don't need to close the Size and Position dialog. It's modeless. You can leave it open and go from slide to slide quickly changing your images. Just click the image, click Height, then up/down, then do another image. Repeat until it's all done. It'll take just a few seconds per slide.
This trick will fix all your image ratios, but expect to do one more pass to make sure that you're using all the space afforded by this new widescreen layout. Regardless of how you images are sized you might want to make some tweaks to the layout and spacing of your text and images.
How to you switch your slides from 16:9 to 4:3? Exactly the same steps except adjust the ratio in Step 0.
Hope this helps someone.
* They aren't really bad people. They are good people with bad presentations. Relax. It's a blog post.
About Scott
Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, consultant, father, diabetic, and Microsoft employee. He is a failed stand-up comic, a cornrower, and a book author.
About Newsletter
I use meditation and breathing exercises to allow me to not get upset when I see screens at the wrong ratio. I am much happier for it.
lb
They have this neat little concept of bleed area, a place where you extend your content to make sure that if extra space happens to exist on a given medium (printers and printing presses don't always work the same) it's not filled with white and your image looks clean.
They have this in analog television as well, I just never thought to use it in presentations. Will do so from now on :)
public void changeImageAspect()
{
foreach (Slide s in Globals.ThisAddIn.Application.ActivePresentation.Slides)
{
foreach (Shape p in s.Shapes)
{
if (p.Type == Core.MsoShapeType.msoPicture || p.Type == Core.MsoShapeType.msoLinkedPicture)
{
p.LockAspectRatio = Core.MsoTriState.msoTrue;
p.ScaleHeight((float)2, Core.MsoTriState.msoTrue, Core.MsoScaleFrom.msoScaleFromTopLeft);
p.ScaleHeight((float)0.5, Core.MsoTriState.msoFalse, Core.MsoScaleFrom.msoScaleFromTopLeft);
}
else if (p.Type == Core.MsoShapeType.msoGroup)
{
foreach (Shape g in p.GroupItems)
{
if (g.Type == Core.MsoShapeType.msoPicture || g.Type == Core.MsoShapeType.msoLinkedPicture)
{
g.LockAspectRatio = Core.MsoTriState.msoTrue;
g.ScaleHeight((float)2, Core.MsoTriState.msoTrue, Core.MsoScaleFrom.msoScaleFromTopLeft);
g.ScaleHeight((float)0.5, Core.MsoTriState.msoFalse, Core.MsoScaleFrom.msoScaleFromTopLeft);
}
}
}
}
}
}
Anyway, a tip I discovered in a large presentation with a lot of screenshots was that the the possibly unintuitively placed Crop > Fill and Crop > Fit, both which "re-auto-crop" on the Picture Tools | Format ribbon tab can be your friends in the reformat as they are both original aspect ratio preserving, particularly if your images follow the templated design layouts... Because they are ribbon commands I could use the usual keyboard tricks: Page Down, Tab to the image, then Alt,JPVT may be a bit unwieldy but still presumably somewhat faster than your version, Scott.
I usually prefer to resize images using ratios and percentages. It's a much cleaner resize.
Thanks for the info.!
http://pptideas.blogspot.it/2007/11/powerpoint-tip-wide-screen-laptops.html
After clicking on the height up once and down once, the image remain stretched.
Thanks!
Comments are closed.