真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C#如何給PowerPoint文檔添加文本水印和圖片水印

當(dāng)演示PowerPoint文檔或是將PowerPoint文檔分享給他人的時(shí)候,我們可能想要給它添加上文本水印(如公司名稱)和圖片水?。ㄈ绻綥ogo),來(lái)讓別人明確的知道該文檔的版權(quán)相關(guān)信息。其實(shí)在Microsoft PowerPoint中是沒(méi)有文本水印和圖片水印的概念的,但我們可以通過(guò)一些方法來(lái)達(dá)到水印的效果。這篇文章將介紹如何使用C#和Free Spire.Presentation組件給PowerPoint文檔添加文本水印和圖片水印。

嶺東網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),嶺東網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為嶺東成百上千提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站制作要多少錢(qián),請(qǐng)找那個(gè)售后服務(wù)好的嶺東做網(wǎng)站的公司定做!

原PowerPoint文檔截圖:
C# 如何給PowerPoint文檔添加文本水印和圖片水印

說(shuō)明
在使用以下代碼前,需要在visual studio中創(chuàng)建一個(gè)C#應(yīng)用程序,下載Free Spire.Presentation, 從安裝文件夾下引用Spire.Presentation.dll到工程中(安裝后,安裝文件夾下有很多demo示例,可以幫助我們快速上手。如果不需要參考demo,也可以直接通過(guò)NuGet Package Manager搜索Free Spire.Presentation,點(diǎn)擊安裝,會(huì)將dll文件自動(dòng)引用到程序中)。

第一部分 添加文本水印
通過(guò)在幻燈片母版添加形狀,給形狀填充文本和鎖定形狀的方式,可以達(dá)到給每一張幻燈片添加文本水印的效果。如果只想給指定幻燈片添加水印,就不用幻燈片母版,直接通過(guò)presentation.Slides[index]獲取指定的幻燈片,然后用同樣的方式就可以了。

//加載PowerPoint文檔
Presentation presentation = new Presentation();
presentation.LoadFromFile("Input.pptx");

RectangleF rect = new RectangleF(340, 150, 300, 200);

//添加文本水印到幻燈片母版
foreach (IMasterSlide masterSlide in presentation.Masters)
{
    //添加矩形到幻燈片母版的指定位置
    IAutoShape shape = masterSlide.Shapes.AppendShape(Spire.Presentation.ShapeType.Rectangle, rect);

    //添加文本到矩形
    shape.TextFrame.Text = "E-iceblue";
    //設(shè)置文本的顏色和字體大小
    TextRange textRange = shape.TextFrame.TextRange;
    textRange.Fill.FillType = Spire.Presentation.Drawing.FillFormatType.Solid;
    textRange.Fill.SolidColor.Color = Color.FromArgb(120, Color.Gray);
    textRange.FontHeight = 55;

    //設(shè)置矩形的填充類型為無(wú)填充
    shape.Fill.FillType = FillFormatType.None;
    //設(shè)置矩形的旋轉(zhuǎn)角度
    shape.Rotation = -45;
    //鎖定矩形使其不能被選擇
    shape.Locking.SelectionProtection = true;
    //設(shè)置矩形的邊框?yàn)闊o(wú)邊框
    shape.Line.FillType = FillFormatType.None;
}

//保存文檔
presentation.SaveToFile("TextWatermark.pptx", Spire.Presentation.FileFormat.Pptx2010);
System.Diagnostics.Process.Start("TextWatermark.pptx");

文本水印效果:
C# 如何給PowerPoint文檔添加文本水印和圖片水印

第二部分 添加圖片水印
通過(guò)給幻燈片母版添加圖片,設(shè)置圖片的透明度和鎖定圖片的方式,可以達(dá)到給每一張幻燈片添加圖片水印的效果。當(dāng)然也可以只給指定的幻燈片添加圖片水印。

//加載PowerPoint文檔
Presentation presentation = new Presentation();
presentation.LoadFromFile("Input.pptx");

RectangleF rect = new RectangleF(340, 150, 200, 200);

//添加圖片水印到幻燈片母版
foreach (IMasterSlide masterSlide in presentation.Masters)
{
    //添加圖片到幻燈片母版的指定位置
    IEmbedImage image = masterSlide.Shapes.AppendEmbedImage(ShapeType.Rectangle, @"logo.png", rect);
    //設(shè)置圖片的透明度
    image.PictureFill.Picture.Transparency = 70;
    //鎖定圖片使其不能被選擇
    image.ShapeLocking.SelectionProtection = true;
    //設(shè)置圖片的邊框?yàn)闊o(wú)邊框
    image.Line.FillType = FillFormatType.None;
}

//保存文檔
presentation.SaveToFile("ImageWatermark.pptx", FileFormat.Pptx2010);
System.Diagnostics.Process.Start("ImageWatermark.pptx");

圖片水印效果:
C# 如何給PowerPoint文檔添加文本水印和圖片水印

總結(jié)
由于篇幅問(wèn)題,這篇文章主要只介紹了水印功能,實(shí)際上除了添加水印以外,F(xiàn)ree Spire.Presentation組件還支持轉(zhuǎn)換PowerPoint文檔到其他格式、文檔加密解密、添加超鏈接、合并和拆分文檔,文本替換、插入、提取視頻和音頻、動(dòng)畫(huà)設(shè)置、創(chuàng)建和編輯表格、創(chuàng)建和編輯圖表、打印powerpoint等功能,如果你對(duì)它感興趣,不妨自己試一試。


網(wǎng)站標(biāo)題:C#如何給PowerPoint文檔添加文本水印和圖片水印
標(biāo)題URL:http://weahome.cn/article/pcgjsd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部