有誰知道如何保存幻燈片的背景圖片在PowerPoint演示文稿(2010年)。這裏是我的代碼的一部分在那裏我試圖清除幻燈片獲得背景圖像,但它不是很理想的結果保存幻燈片的背景圖片
PowerPoint.Presentation p = app.Presentations.Open(slidesContainerPath, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoFalse);
string imagename;
foreach (PowerPoint.Slide s in p.Slides) {
imagename = s.SlideIndex.ToString() + ".jpg";
s.BackgroundStyle = Microsoft.Office.Core.MsoBackgroundStyleIndex.msoBackgroundStyleNotAPreset;
foreach(Microsoft.Office.Interop.PowerPoint.Shape shape in s.Shapes)
{
shape.Delete();
}
s.Export(imagesContainerPath + "\\" + imagename, "JPG");
}
if (p != null) {
p.Close();
}
檢查此鏈接:http://www.add-in-express.com/forum/read.php? FID = 5&TID = 9327 – 2012-07-16 14:01:06