溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C# 如何添加文本、圖片水印到PPT

發(fā)布時(shí)間:2020-07-29 12:53:17 來源:網(wǎng)絡(luò) 閱讀:762 作者:Eiceblue 欄目:編程語言

對(duì)文檔添加水印可以有效聲明和保護(hù)文檔,是保護(hù)重要文件的方式之一。在PPT文檔中同樣也可以設(shè)置水印,包括文本水印和圖片水印,本文將講述如何通過Spire.Presentation for .NET來對(duì)PPT添加水印,下載安裝Free Spire.Presentationfor .NET后,添加引用dll文件,參考下面的操作步驟,完成水印添加。

1.添加文本水印

步驟一:初始化Presentation類實(shí)例,并加載文檔

Presentation ppt = newPresentation();
ppt.LoadFromFile(@"C:\Users\Administrator\Desktop\sample.pptx", FileFormat.Pptx2010);

步驟二:初始化一個(gè)Font類實(shí)例,并實(shí)例化字體格式

Font stringFont = newFont("Arial", 90);
Size size = TextRenderer.MeasureText("內(nèi)部資料", stringFont);

步驟三:繪制一個(gè)shape并指定大小、填充顏色、邊框顏色和旋轉(zhuǎn)角度

RectangleF rect = newRectangleF((ppt.SlideSize.Size.Width- size.Width) / 2, (ppt.SlideSize.Size.Height - size.Height) / 2, size.Width,size.Height);
IAutoShape shape =ppt.Slides[0].Shapes.AppendShape(Spire.Presentation.ShapeType.Rectangle, rect);
shape.Fill.FillType= FillFormatType.None;
shape.ShapeStyle.LineColor.Color= Color.White;
shape.Rotation = -45;

步驟四:設(shè)定形狀屬性為保護(hù)屬性

shape.Locking.SelectionProtection= true;
shape.Line.FillType= FillFormatType.None;

步驟五:設(shè)置文本大小、顏色

shape.TextFrame.Text= "內(nèi)部資料";
TextRange textRange =shape.TextFrame.TextRange;
textRange.Fill.FillType= Spire.Presentation.Drawing.FillFormatType.Solid;
textRange.Fill.SolidColor.Color= Color.FromArgb(120, Color.Gray);
textRange.FontHeight= 45;

步驟六:保存文檔

ppt.SaveToFile("TextWatermark.pptx", FileFormat.Pptx2010);

完成以上代碼步驟后,調(diào)試運(yùn)行項(xiàng)目程序,生成文件(可在該項(xiàng)目文件中bin>Debug中查看),如下圖所示:

C# 如何添加文本、圖片水印到PPT


2.添加圖片水印

步驟一:初始化一個(gè)Presentation類實(shí)例并加載文檔

Presentation ppt = newPresentation();
 ppt.LoadFromFile(@"C:\Users\Administrator\Desktop\sample.pptx", FileFormat.Pptx2010);

步驟二:為第一張幻燈片設(shè)置背景圖片類型和樣式

ppt.Slides[0].SlideBackground.Type= Spire.Presentation.Drawing.BackgroundType.Custom;
 ppt.Slides[0].SlideBackground.Fill.FillType = FillFormatType.Picture;
 ppt.Slides[0].SlideBackground.Fill.PictureFill.FillType= PictureFillType.Stretch;

步驟三:加載圖片并為第一張幻燈片設(shè)置水印

Image img = Image.FromFile(@"C:\Users\Administrator\Desktop\p_w_picpaths\1.jpg");
 IImageData p_w_picpath = ppt.Images.Append(img);
 ppt.Slides[0].SlideBackground.Fill.PictureFill.Picture.EmbedImage= p_w_picpath;

步驟四:保存文檔

 ppt.SaveToFile("ImageWatermark1.pptx", FileFormat.Pptx2010);

C# 如何添加文本、圖片水印到PPT


以上是對(duì)PPT添加水印的代碼操作,希望該方法能提供幫助,感謝閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

ppt
AI