Pixel resolution limit in PowerPoint 2007 SP1 JPG Export ?!?

  • Thread starter David Zetterlund
  • Start date
D

David Zetterlund

I have been using the jpeg export methods in
Microsoft.Office.Interop.PowerPoint for ages but suddenly in Office 2007 SP1
there seem to be a size limit.

Example below generates pictures but only top left corner of them does have
content (approx 800x600 size). Does anyone know more about this, like is it
intended to be like this? Is there a way around it?

Presentation pres = app.Presentations.Open("test.pptx",
MsoTriState.msoFalse, MsoTriState.msoTrue, MsoTriState.msoTrue);

foreach (Slide slide in pres.Slides)
{
slide.Export("test.jpg", "JPG", 1280, 768);
}

Thankful for any advice,
David Zetterlund
 
D

David Zetterlund

Sorry for posting here, found my answer in another dg:
PowerPoint General Questions "2007 SP1 exports PNG Images at lesser
resolution than desired"

David
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top