欧美大屁股bbbbxxxx,狼人大香伊蕉国产www亚洲,男ji大巴进入女人的视频小说,男人把ji大巴放进女人免费视频,免费情侣作爱视频

歡迎來到入門教程網(wǎng)!

C#教程

當前位置:主頁 > 軟件編程 > C#教程 >

C#如何添加PPT背景

來源:本站原創(chuàng)|時間:2020-01-10|欄目:C#教程|點擊: 次

我們在創(chuàng)建Powerpoint文檔時,系統(tǒng)默認的幻燈片是空白背景的,很多時候我們需要自定義幻燈片背景,以達到美觀的文檔效果。在下面的示例中將介紹給PowerPoint幻燈片設(shè)置背景的方法,主要包含以下三個部分:

  • 添加純色背景
  • 添加漸變色背景
  • 添加圖片作為背景

所需工具

Free Spire.Presentation for .NET 版本3.3 (社區(qū)版)

示例代碼(供參考)

步驟 1 :添加如下using指令

using Spire.Presentation;
using Spire.Presentation.Drawing;
using System.Drawing;

步驟 2 :創(chuàng)建文檔

Presentation ppt = new Presentation();
ppt.LoadFromFile("test.pptx");

步驟 3 :添加純色背景

//設(shè)置文檔的背景填充模式為純色填充
ppt.Slides[0].SlideBackground.Type = BackgroundType.Custom;
ppt.Slides[0].SlideBackground.Fill.FillType = FillFormatType.Solid;
ppt.Slides[0].SlideBackground.Fill.SolidColor.Color = Color.Pink;

步驟 4 :添加漸變背景色

//設(shè)置文檔的背景填充模式為漸變色填充
ppt.Slides[1].SlideBackground.Type = BackgroundType.Custom;
ppt.Slides[1].SlideBackground.Fill.FillType = FillFormatType.Gradient;
ppt.Slides[1].SlideBackground.Fill.Gradient.GradientStops.Append(0f, KnownColors.Yellow);
ppt.Slides[1].SlideBackground.Fill.Gradient.GradientStops.Append(1f, KnownColors.Orange);

步驟 5 :添加圖片作為背景

//設(shè)置幻燈片背景色為圖片背景
ppt.Slides[2].SlideBackground.Type = Spire.Presentation.Drawing.BackgroundType.Custom;
ppt.Slides[2].SlideBackground.Fill.FillType = FillFormatType.Picture;
ppt.Slides[2].SlideBackground.Fill.PictureFill.FillType = PictureFillType.Stretch;
//加載圖片作為幻燈片背景
Image img = Image.FromFile("green.png");
IImageData image = ppt.Images.Append(img);
ppt.Slides[2].SlideBackground.Fill.PictureFill.Picture.EmbedImage = image;

步驟6 :保存文件

ppt.SaveToFile("result.pptx", FileFormat.Pptx2010);
System.Diagnostics.Process.Start("result.pptx");

完成代碼后,調(diào)試運行程序,生成文件,如下:

全部代碼:

using Spire.Presentation;
using Spire.Presentation.Drawing;
using System.Drawing;

namespace AddBackground_PPT
{
  class Program
  {
    static void Main(string[] args)
    {
      //實例化Presentation類,加載PowerPoint文檔
      Presentation ppt = new Presentation();
      ppt.LoadFromFile("test.pptx");

      //設(shè)置文檔的背景填充模式為純色填充
      ppt.Slides[0].SlideBackground.Type = BackgroundType.Custom;
      ppt.Slides[0].SlideBackground.Fill.FillType = FillFormatType.Solid;
      ppt.Slides[0].SlideBackground.Fill.SolidColor.Color = Color.Pink;

      //設(shè)置文檔的背景填充模式為漸變色填充
      ppt.Slides[1].SlideBackground.Type = BackgroundType.Custom;
      ppt.Slides[1].SlideBackground.Fill.FillType = FillFormatType.Gradient;
      ppt.Slides[1].SlideBackground.Fill.Gradient.GradientStops.Append(0f, KnownColors.Yellow);
      ppt.Slides[1].SlideBackground.Fill.Gradient.GradientStops.Append(1f, KnownColors.Orange);

      //設(shè)置幻燈片背景色為圖片背景
      ppt.Slides[2].SlideBackground.Type = Spire.Presentation.Drawing.BackgroundType.Custom;
      ppt.Slides[2].SlideBackground.Fill.FillType = FillFormatType.Picture;
      ppt.Slides[2].SlideBackground.Fill.PictureFill.FillType = PictureFillType.Stretch;
      //加載圖片作為幻燈片背景
      Image img = Image.FromFile("green.png");
      IImageData image = ppt.Images.Append(img);
      ppt.Slides[2].SlideBackground.Fill.PictureFill.Picture.EmbedImage = image;

      //保存并打開文檔
      ppt.SaveToFile("result.pptx", FileFormat.Pptx2010);
      System.Diagnostics.Process.Start("result.pptx");
    }
  }
}

本文完。

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持我們。

上一篇:C# 7.2中結(jié)構(gòu)體性能問題的解決方案

欄    目:C#教程

下一篇:C#實現(xiàn)金額轉(zhuǎn)換成中文大寫金額

本文標題:C#如何添加PPT背景

本文地址:http://mengdiqiu.com.cn/a1/C_jiaocheng/5103.html

網(wǎng)頁制作CMS教程網(wǎng)絡(luò)編程軟件編程腳本語言數(shù)據(jù)庫服務(wù)器

如果侵犯了您的權(quán)利,請與我們聯(lián)系,我們將在24小時內(nèi)進行處理、任何非本站因素導(dǎo)致的法律后果,本站均不負任何責(zé)任。

聯(lián)系QQ:835971066 | 郵箱:835971066#qq.com(#換成@)

Copyright © 2002-2020 腳本教程網(wǎng) 版權(quán)所有