中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C# 添加PDF印章

發布時間:2020-06-17 20:44:58 來源:網絡 閱讀:1258 作者:E_iceblue 欄目:編程語言

文檔里加蓋印章可以有效地聲明文檔的權威性,特別是對于一些具有行政性質、法律性質或者是內部保密性質的文檔,添加印章就顯得尤為重要了。因此,本文將介紹一種通過編程來實現PDF圖片印章添加的方法。
你需要使用的工具有:

* Free Spire.PDF for .NET 4.3 (社區版)

注意:在編程當中注意引用Spire.PDF.dll文件到項目,該dll文件可以在安裝文件下的Bin文件夾中獲取。
【C#】

using Spire.Pdf;
using Spire.Pdf.Annotations;
using Spire.Pdf.Annotations.Appearance;
using Spire.Pdf.Graphics;
using System;
using System.Drawing;

namespace AddStamp_PDF
{
    class Program
    {
        static void Main(string[] args)
        {
            //創建一個PdfDocument類對象,并加載PDF文檔
            PdfDocument doc = new PdfDocument();
            doc.LoadFromFile(@"C:\Users\Administrator\Desktop\test.pdf");
            //獲取PDF文檔第一頁
            PdfPageBase page = doc.Pages[0];
            //新建一個PdfRubberStampAnnotation對象,指定其注釋的位置和大小
            PdfRubberStampAnnotation loStamp = new PdfRubberStampAnnotation(new RectangleF(new PointF(-5, -5), new SizeF(200, 200)));
            //實例化一個PdfAppearance對象,并加載作為印章的圖片
            PdfAppearance loApprearance = new PdfAppearance(loStamp);
            PdfImage image = PdfImage.FromFile(@"C:\Users\Administrator\Desktop\yz.jpg");
            //新建一個PDF模板,并在模板里繪制圖片
            PdfTemplate template = new PdfTemplate(600, 800);
            template.Graphics.DrawImage(image, 0, 0);
            loApprearance.Normal = template;
            loStamp.Appearance = loApprearance;
            //添加印章到PDF文檔
            page.AnnotationsWidget.Add(loStamp);
            //保存并打開文檔
            string output = "ImageStamp.pdf";
            doc.SaveToFile(output);
            System.Diagnostics.Process.Start("ImageStamp.pdf");
        }
    }
}

調試運行程序,生成文檔(可在該程序項目文件夾bin>Debug中查看)
C# 添加PDF印章

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宁蒗| 三台县| 江津市| 清镇市| 吉安县| 临桂县| 白水县| 临西县| 德保县| 昭苏县| 铜陵市| 柘城县| 万盛区| 商丘市| 邵阳县| 林州市| 云安县| 龙川县| 西平县| 东辽县| 四平市| 保山市| 黄平县| 罗山县| 阿拉善右旗| 石泉县| 宁津县| 临汾市| 道孚县| 枞阳县| 青神县| 原平市| 晴隆县| 沙雅县| 青岛市| 宜川县| 汾阳市| 海宁市| 叙永县| 会宁县| 偃师市|