C#向PPT文档插入图片以及导出图片
PowerPoint演示文稿是我们日常工作中常用的办公软件之一,而图片则是PowerPoint文档的重要组成部分,那么如何向幻灯片插入图片以及导出图片呢?本文我将给大家分享如何使用一个免费版PowerPoint组件—Free Spire.Presentation,以C#/VB.NET编程的方式来快速地实现这两个功能。我们可以从官网下载Free Spire.Presentation,创建项目后添加此DLL作为引用。
插入图片
向PPT文档插入图片时,这里我选择插入两张图片到不同的两张幻灯片中。
具体步骤:
在之前需要添加以下命名空间:
using Spire.Presentation;<br/> using Spire.Presentation.Drawing;
步骤1:新建一个PPT文档。
Presentation presentation = new Presentation(); presentation.Slides.Append();
步骤2:插入第一张图片到第一张幻灯片
string ImageFile = @"C:\Users\Administrator\Pictures\01.jpg";<br/> RectangleF rect = new RectangleF(, , , ); <br/>presentation.Slides[].Shapes.AppendEmbedImage(ShapeType.Rectangle, ImageFile, rect);<br/> presentation.Slides[].Shapes[].Line.FillFormat.SolidFillColor.Color = Color.FloralWhite;
步骤3:添加形状,再添加文本到形状里面。
RectangleF rect2 = new RectangleF(, , , );<br/> IAutoShape shape = presentation.Slides[].Shapes.AppendShape(ShapeType.Rectangle, rect2);<br/> shape.Fill.FillType = FillFormatType.None;<br/> shape.ShapeStyle.LineColor.Color = Color.White; //添加文本到形状中<br/> shape.TextFrame.Text = "大熊猫是哺乳动物,已在地球上生存了至少800万年,被誉为活化石和中国国宝,世界自然基金会的形象大使,是世界生物多样性保护的旗舰物种。据第三次全国大熊猫野外种群调查,全世界野生大熊猫已不足1600只,属于中国国家一级保护动物。";<br/> TextRange textRange = shape.TextFrame.TextRange;<br/> shape.TextFrame.Paragraphs[].Alignment = TextAlignmentType.Left; //设置文本字体<br/> textRange.Fill.FillType = Spire.Presentation.Drawing.FillFormatType.Solid;<br/> textRange.Fill.SolidColor.Color = Color.Black;<br/> textRange.LatinFont = new TextFont("Arial Black"
步骤4:同样,插入第二张图片到第二张幻灯片,添加形状,再添加文本到形状里面。最后保存文档。
presentation.SaveToFile(@"C:\Users\Administrator\Desktop\result.pptx ", FileFormat.Pptx2010);<br/> System.Diagnostics.Process.Start(@"C:\Users\Administrator\Desktop\result.pptx ");
效果图:
全部代码:
using System;<br/> using System.Drawing;<br/> using System.Windows.Forms;<br/> using Spire.Presentation;<br/> using Spire.Presentation.Drawing; namespace InsertimageinPowerPointFille<br/> {<br/> public partial class Form1 : Form<br/> {<br/> public Form1()<br/> {<br/> InitializeComponent();<br/> } private void button1_Click(object sender, EventArgs e)<br/> {<br/> //新建PPT<br/> Presentation presentation = new Presentation();<br/> presentation.Slides.Append(); //插入第一张图片到第一张幻灯片<br/> string ImageFile = @"C:\Users\Administrator\Pictures\01.jpg";<br/> RectangleF rect = new RectangleF(, , , );<br/> presentation.Slides[].Shapes.AppendEmbedImage(ShapeType.Rectangle, ImageFile, rect);<br/> presentation.Slides[].Shapes[].Line.FillFormat.SolidFillColor.Color = Color.FloralWhite; //添加形状<br/> RectangleF rect2 = new RectangleF(, , , );<br/> IAutoShape shape = presentation.Slides[].Shapes.AppendShape(ShapeType.Rectangle, rect2);<br/> shape.Fill.FillType = FillFormatType.None;<br/> shape.ShapeStyle.LineColor.Color = Color.White; //添加文本到形状中<br/> shape.TextFrame.Text = "大熊猫是哺乳动物,已在地球上生存了至少800万年,被誉为活化石和中国国宝,世界自然基金会的形象大使,是世界生物多样性保护的旗舰物种。据第三次全国大熊猫野外种群调查,全世界野生大熊猫已不足1600只,属于中国国家一级保护动物。";<br/> TextRange textRange = shape.TextFrame.TextRange;<br/> shape.TextFrame.Paragraphs[].Alignment = TextAlignmentType.Left; //设置文本字体<br/> textRange.Fill.FillType = Spire.Presentation.Drawing.FillFormatType.Solid;<br/> textRange.Fill.SolidColor.Color = Color.Black;<br/> textRange.LatinFont = new TextFont("Arial Black"); //插入第二张图片到第二张幻灯片<br/> string ImageFile1 = @"C:\Users\Administrator\Pictures\02.jpg";<br/> RectangleF rect1 = new RectangleF(, , , );<br/> presentation.Slides[].Shapes.AppendEmbedImage(ShapeType.Rectangle, ImageFile1, rect1);<br/> presentation.Slides[].Shapes[].Line.FillFormat.SolidFillColor.Color = Color.FloralWhite; //添加形状<br/> RectangleF rect3 = new RectangleF(, , , );<br/> IAutoShape shape1 = presentation.Slides[].Shapes.AppendShape(ShapeType.Rectangle, rect3);<br/> shape1.Fill.FillType = FillFormatType.Solid;<br/> shape1.Fill.FillType = FillFormatType.None;<br/> shape1.ShapeStyle.LineColor.Color = Color.White; //添加文本到形状中<br/> shape1.TextFrame.Text = "黑白相间的外表,有利隐蔽在密林的树上和积雪的地面而不易被天敌发现。相对锋利的爪和发达有力的前后肢,有利于大熊猫能快速爬上高大的乔木。";<br/> TextRange textRange1 = shape1.TextFrame.TextRange; //设置文本字体<br/> textRange1.Fill.FillType = Spire.Presentation.Drawing.FillFormatType.Solid;<br/> textRange1.Fill.SolidColor.Color = Color.Blue;<br/> textRange1.LatinFont = new TextFont("Arial Black"); //保存文件<br/> presentation.SaveToFile(@"C:\Users\Administrator\Desktop\result.pptx ", FileFormat.Pptx2010);<br/> System.Diagnostics.Process.Start(@"C:\Users\Administrator\Desktop\result.pptx ");<br/> }<br/> }<br/> }
从上面的代码可以发现,其实通过这个组件,我们还可以自由地设置我们想要的形状、文本、字体、颜色等等,用起来确实方便又快速。感兴趣的话可以试一下其他丰富的效果。
导出图片
现在,我们导出上述运行后文档的图片。
具体步骤:
同样添加如下命名空间:
using Spire.Presentation;
步骤1: 新建一个Presentation对象,并加载Presentation文件。
Presentation ppt = new Presentation();<br/> ppt.LoadFromFile(@"C:\Users\Administrator\Desktop\result.pptx");
步骤2:遍历PPT文档所有的图片,并保存为.png格式。
for (int i = ; i < ppt.Images.Count; i++) { Image image = ppt.Images[i].Image; image.Save(string.Format(@"..\..\Images{0}.png", i)); }
效果图:
全部代码:
using System;<br/> using System.Drawing;<br/> using System.Windows.Forms;<br/> using Spire.Presentation; namespace ExtractImagesfromPPT<br/> {<br/> public partial class Form1 : Form<br/> {<br/> public Form1()<br/> {<br/> InitializeComponent();<br/> } private void button1_Click(object sender, EventArgs e)<br/> {<br/> Presentation ppt = new Presentation();<br/> ppt.LoadFromFile(@"C:\Users\Administrator\Desktop\result.pptx");<br/> for (int i = ; i < ppt.Images.Count; i++)<br/> {<br/> Image image = ppt.Images[i].Image;<br/> image.Save(string.Format(@"..\..\Images{0}.png", i)); }<br/> }<br/> }<br/> }
转发申明:
本文转自互联网,由小站整理并发布,在于分享相关技术和知识。版权归原作者所有,如有侵权,请联系本站 邮箱 top8488@163.com,将在24小时内删除。谢谢