export function in powerpoint 2007

  • Thread starter Thread starter Suha
  • Start date Start date
S

Suha

i am using export function of office 2007, but the output picture is wrong.
it is not the same as previous office, all text become bold. Please help me.
 
Suha,
Could you be more specific as to what function you are using. Are you
talking about another format using save as. Are you creating hand-outs in
Word?
Or is it something else?
Luc Sanders
MVP - PowerPoint
 
i am using export function of office 2007, but the output picture is wrong.
it is not the same as previous office, all text become bold. Please help me.

The previous version of Office did awful text exports.
2007's are, if anything, worse.

The only suggestion I can offer is to exort at much higher resolution than
needed, then use something like IrfanView to downsample to the resolution you
want.
 
Here is my codes:

Microsoft.Office.Interop.PowerPoint.Application ap = new Microsoft.Office.
Interop.PowerPoint.ApplicationClass();
Microsoft.Office.Interop.PowerPoint.Presentation pp;
ap.Visible = Microsoft.Office.Core.MsoTriState.msoTrue;

pp = ap.Presentations.Open(strFile, Microsoft.Office.Core.
MsoTriState.msoTrue, Microsoft.Office.Core.MsoTriState.msoTrue, Microsoft.
Office.Core.MsoTriState.msoTrue);
pp.Export(@"D:\temp","png",-1,-1);

All the images created by export() is wrong font size ( bigger and bold).
 
Here is my codes:

Microsoft.Office.Interop.PowerPoint.Application ap = new Microsoft.Office.
Interop.PowerPoint.ApplicationClass();
Microsoft.Office.Interop.PowerPoint.Presentation pp;
ap.Visible = Microsoft.Office.Core.MsoTriState.msoTrue;

pp = ap.Presentations.Open(strFile, Microsoft.Office.Core.
MsoTriState.msoTrue, Microsoft.Office.Core.MsoTriState.msoTrue, Microsoft.
Office.Core.MsoTriState.msoTrue);
pp.Export(@"D:\temp","png",-1,-1);

All the images created by export() is wrong font size ( bigger and bold).

Try opening the same presentation manually and use OfficeButton, Save As, PNG

Compare the results with what you're getting via code.

Same/better/worse?
 
Steve said:
Here is my codes:
[quoted text clipped - 9 lines]
All the images created by export() is wrong font size ( bigger and bold).

Try opening the same presentation manually and use OfficeButton, Save As, PNG

Compare the results with what you're getting via code.

Same/better/worse?

-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================

I used save as (*.png) as your idea, it works but the output is not the same
with the original slide:
size of output image is bigger(1500x1200) than size of slide.

I can scale image to desired size, but is there any way to export slide to
800x600 image with
good quality(font size not bigger).
 
Steve said:
Here is my codes:
[quoted text clipped - 9 lines]
All the images created by export() is wrong font size ( bigger and bold).

Try opening the same presentation manually and use OfficeButton, Save As, PNG

Compare the results with what you're getting via code.

Same/better/worse?

-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================

I used save as (*.png) as your idea, it works but the output is not the same
with the original slide:
size of output image is bigger(1500x1200) than size of slide.

I can scale image to desired size, but is there any way to export slide to
800x600 image with
good quality(font size not bigger).

Can you post the original slide and an example of the exported image you're
getting someplace on the web where we can see it?
 
Back
Top