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
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