c# – 如何以编程方式从图像列表中创建powerpoint

前端之家收集整理的这篇文章主要介绍了c# – 如何以编程方式从图像列表中创建powerpoint前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我见过这个问题: Creating PowerPoint presentations programmatically,但那个问题问“你能吗?”答案是肯定的.

但我问“怎么样?”特别是“从图像列表?”

这就是我打破ppt到图像的方法

var app = new PowerPoint.Application();
var pres = app.Presentations;
var file = pres.Open(input,MsoTriState.msoFalse,MsoTriState.msoFalse);
file.SaveAs(output,Microsoft.Office.Interop.PowerPoint.PpSaveAsFileType.ppSaveAsJPG,MsoTriState.msoTrue);
file.Close();
app.Quit();

我该如何反过来?

解决方法

它会是这样的:
string pictureFileName = "C:\\temp\\test.jpg"; 

Application pptApplication = new Application();

Microsoft.Office.Interop.PowerPoint.Slides slides;
Microsoft.Office.Interop.PowerPoint._Slide slide;
Microsoft.Office.Interop.PowerPoint.TextRange objText;

// Create the Presentation File
Presentation pptPresentation = pptApplication.Presentations.Add(MsoTriState.msoTrue);

Microsoft.Office.Interop.PowerPoint.CustomLayout customLayout = pptPresentation.SlideMaster.CustomLayouts[Microsoft.Office.Interop.PowerPoint.PpSlideLayout.ppLayoutText];

// Create new Slide
slides = pptPresentation.Slides;
slide = slides.AddSlide(1,customLayout);

// Add title
objText = slide.Shapes[1].TextFrame.TextRange;
objText.Text = "test";
objText.Font.Name = "Arial";
objText.Font.Size = 32;

objText = slide.Shapes[2].TextFrame.TextRange;
objText.Text = "Content goes here\nYou can add text\nItem 3";

Microsoft.Office.Interop.PowerPoint.Shape shape = slide.Shapes[2];
slide.Shapes.AddPicture(pictureFileName,Microsoft.Office.Core.MsoTriState.msoFalse,Microsoft.Office.Core.MsoTriState.msoTrue,shape.Left,shape.Top,shape.Width,shape.Height);

slide.NotesPage.Shapes[2].TextFrame.TextRange.Text = "Test";

pptPresentation.SaveAs(@"c:\temp\test.pptx",Microsoft.Office.Interop.PowerPoint.PpSaveAsFileType.ppSaveAsDefault,MsoTriState.msoTrue);
//pptPresentation.Close();
//pptApplication.Quit();
原文链接:https://www.f2er.com/csharp/243197.html

猜你在找的C#相关文章