PDA

View Full Version : save slide as a jpeg of certain size



gibbo1715
01-11-2008, 02:31 AM
Hi All

I am trying to save a powerpoint slide as a jpeg for use in a web page, is there a way to do a save as jpeg but make the size of the image smaller (i.e. only fit half the screen instead of all of it)

thanks

gibbo

ALe
01-11-2008, 05:37 AM
I don't think you can do it directly. Can you use .wmf instead of .jpg (it's much smaller)?

John Wilson
01-12-2008, 01:38 PM
You should be able to use the export method Change the sizes to suit

eg


Sub dothis()
With ActivePresentation.Slides(1)
.Export "C:\Documents and Settings\john\Desktop\test.jpg" _
, FilterName:="JPG", ScaleWidth:=300, ScaleHeight:=200
End With
End Sub