C# 在PDF中繪製動態圖章

来源:https://www.cnblogs.com/Yesi/archive/2018/08/28/9549092.html
-Advertisement-
Play Games

我們知道,動態圖章,因圖章中的時間、日期可以動態的生成,因而具有較強的時效性。在本篇文章中將介紹通過C#編程在PDF中繪製動態圖章的方法,該方法可自動獲取當前系統登錄用戶名、日期及時間信息並生成圖章。 使用工具 Spire.PDF for .NET 註:下載安裝後,註意在程式中添加引用Spire.P ...


我們知道,動態圖章,因圖章中的時間、日期可以動態的生成,因而具有較強的時效性。在本篇文章中將介紹通過C#編程在PDF中繪製動態圖章的方法,該方法可自動獲取當前系統登錄用戶名、日期及時間信息並生成圖章。

使用工具

註:下載安裝後,註意在程式中添加引用Spire.PDF.dll(dll文件可在安裝路徑下的Bin文件夾中獲取)

 

 

C#代碼示例(供參考)

步驟 1 :添加using指令

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

步驟 2 :創建文檔,載入測試文件

//創建PdfDocument對象
PdfDocument doc = new PdfDocument();

//載入現有PDF文檔
doc.LoadFromFile("sample.pdf");

步驟 3 :獲取需要添加動態圖章的頁面

PdfPageBase page = doc.Pages[1];

步驟 4 :創建印章模板、字體、畫刷等

//創建模板對象
PdfTemplate template = new PdfTemplate(120, 60);

//創建字體
PdfCjkStandardFont font1 = new PdfCjkStandardFont(PdfCjkFontFamily.SinoTypeSongLight, 16f, PdfFontStyle.Bold | PdfFontStyle.Italic);
PdfTrueTypeFont font2 = new PdfTrueTypeFont(new Font("宋體", 10f), true);

//創建單色畫刷和漸變畫刷
PdfSolidBrush brush = new PdfSolidBrush(Color.Red);
RectangleF rect = new RectangleF(new PointF(0, 0), template.Size);
PdfLinearGradientBrush gradientBrush = new PdfLinearGradientBrush(rect, Color.White, Color.White, PdfLinearGradientMode.Horizontal);

//創建圓角矩形路徑
int CornerRadius = 10;
PdfPath path = new PdfPath();
path.AddArc(template.GetBounds().X, template.GetBounds().Y, CornerRadius, CornerRadius, 180, 90);
path.AddArc(template.GetBounds().X + template.Width - CornerRadius, template.GetBounds().Y, CornerRadius, CornerRadius, 270, 90);
path.AddArc(template.GetBounds().X + template.Width - CornerRadius, template.GetBounds().Y + template.Height - CornerRadius, CornerRadius, CornerRadius, 0, 90);
path.AddArc(template.GetBounds().X, template.GetBounds().Y + template.Height - CornerRadius, CornerRadius, CornerRadius, 90, 90);
path.AddLine(template.GetBounds().X, template.GetBounds().Y + template.Height - CornerRadius, template.GetBounds().X, template.GetBounds().Y + CornerRadius / 2);

步驟 5 :應用模板

//在模板上畫圓角矩形路徑,並用漸變色填充
template.Graphics.DrawPath(gradientBrush, path);
//在模板上畫圓角矩形路徑,並用紅色填充路徑
template.Graphics.DrawPath(PdfPens.Red, path);

步驟 6 :繪製印章上的文字、用戶名、當前日期時間等

String s1 = "已審閱\n";
String s2 = System.Environment.UserName + "行政處 \n" + DateTime.Now.ToString("F");
template.Graphics.DrawString(s1, font1, brush, new PointF(5, 5));
template.Graphics.DrawString(s2, font2, brush, new PointF(2, 28));

步驟 7 :添加印章到PDF頁面指定位置

//創建PdfRubberStampAnnotation對象,並指定其位置和大小
PdfRubberStampAnnotation stamp = new PdfRubberStampAnnotation(new RectangleF(new PointF(page.ActualSize.Width - 300, 380), template.Size));

//創建PdfApperance對象,並將模板應用為一般狀態
PdfAppearance apprearance = new PdfAppearance(stamp);
apprearance.Normal = template;

//在印章上應用PdfApperance對象(即樣式)
stamp.Appearance = apprearance;

//將印章添加到PdfAnnotation集合
page.AnnotationsWidget.Add(stamp);

步驟 8 :保存並打開文檔 

doc.SaveToFile("output.pdf", FileFormat.PDF);
System.Diagnostics.Process.Start("output.pdf");

完成以上步驟後,調試運行程式,生成文檔。在生成的文檔中,文末已添加了動態的圖章,如下圖所示:

全部代碼:

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

namespace PDF動態圖章
{
    class Program
    {
        static void Main(string[] args)
        {
            //創建PdfDocument對象
            PdfDocument doc = new PdfDocument();

            //載入現有PDF文檔
            doc.LoadFromFile("sample.pdf");

            //獲取要添加動態印章的頁面
            PdfPageBase page = doc.Pages[1];

            //創建模板對象
            PdfTemplate template = new PdfTemplate(120, 60);

            //創建字體
            PdfCjkStandardFont font1 = new PdfCjkStandardFont(PdfCjkFontFamily.SinoTypeSongLight, 16f, PdfFontStyle.Bold | PdfFontStyle.Italic);
            PdfTrueTypeFont font2 = new PdfTrueTypeFont(new Font("宋體", 10f), true);

            //創建單色畫刷和漸變畫刷
            PdfSolidBrush brush = new PdfSolidBrush(Color.Red);
            RectangleF rect = new RectangleF(new PointF(0, 0), template.Size);
            PdfLinearGradientBrush gradientBrush = new PdfLinearGradientBrush(rect, Color.White, Color.White, PdfLinearGradientMode.Horizontal);

            //創建圓角矩形路徑
            int CornerRadius = 10;
            PdfPath path = new PdfPath();
            path.AddArc(template.GetBounds().X, template.GetBounds().Y, CornerRadius, CornerRadius, 180, 90);
            path.AddArc(template.GetBounds().X + template.Width - CornerRadius, template.GetBounds().Y, CornerRadius, CornerRadius, 270, 90);
            path.AddArc(template.GetBounds().X + template.Width - CornerRadius, template.GetBounds().Y + template.Height - CornerRadius, CornerRadius, CornerRadius, 0, 90);
            path.AddArc(template.GetBounds().X, template.GetBounds().Y + template.Height - CornerRadius, CornerRadius, CornerRadius, 90, 90);
            path.AddLine(template.GetBounds().X, template.GetBounds().Y + template.Height - CornerRadius, template.GetBounds().X, template.GetBounds().Y + CornerRadius / 2);

            //在模板上畫圓角矩形路徑,並用漸變色填充
            template.Graphics.DrawPath(gradientBrush, path);
            //在模板上畫圓角矩形路徑,並用紅色填充路徑
            template.Graphics.DrawPath(PdfPens.Red, path);

            //在模板上繪製印章文字、系統用戶名、日期
            String s1 = "已審閱\n";
            String s2 = System.Environment.UserName + "行政處 \n" + DateTime.Now.ToString("F");
            template.Graphics.DrawString(s1, font1, brush, new PointF(5, 5));
            template.Graphics.DrawString(s2, font2, brush, new PointF(2, 28));

            //創建PdfRubberStampAnnotation對象,並指定其位置和大小
            PdfRubberStampAnnotation stamp = new PdfRubberStampAnnotation(new RectangleF(new PointF(page.ActualSize.Width - 300, 380), template.Size));

            //創建PdfApperance對象,並將模板應用為一般狀態
            PdfAppearance apprearance = new PdfAppearance(stamp);
            apprearance.Normal = template;

            //在印章上應用PdfApperance對象(即樣式)
            stamp.Appearance = apprearance;

            //將印章添加到PdfAnnotation集合
            page.AnnotationsWidget.Add(stamp);

            //保存文檔
            doc.SaveToFile("output.pdf", FileFormat.PDF);
            System.Diagnostics.Process.Start("output.pdf");
        }
    }
}
View Code

 

以上是本次關於C#在PDF文檔中繪製動態圖章的方法介紹,在前面的文章中介紹了添加印章的到PDF文檔的方法,有需要也可以查閱該文檔。

感謝閱讀。

(本文完)


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 日誌? 日誌,就是用來記錄程式運行的時候都發生了什麼事。 事件按嚴重程度劃分level 事件內容: 時間 位置 事件的嚴重程度 level 內容 用 模塊實現 logging 模塊 日誌級別(level):DEBUG Logger.setLevel() ——設置日誌器將會處理的日誌消息的最低嚴重級別 ...
  • 軟體環境:Goland 倉庫地址 一、目的 之前用純邏輯壘完了一個可登入登出的線上多人聊天室(代碼倉庫地址),這次學習了Protobuf協議,於是想試著更新下聊天室的版本。 主要目的是為了掌握Protobuf的使用。 二、設計思路 通過Protobuf中內置好的編碼函數,將要發送的數據進行編碼,之後 ...
  • python的網路編程有不少難點,也容易忘記,最近我會陸續發出系統、完整pythonnet知識的博客,一邊複習一邊分享,感興趣的可以關註我。 話不多說,開始吧。 網路編程 目的:數據的傳輸 ISO(國際標準化組織) OSI七層模型 >網路通信的標準化流程 應用層:提供用戶服務,具體的內容由特定的程式 ...
  • #include <stdio.h> void highPrecision (int N ); int a[50000] = {0, 1}, length = 1; //開闢一個大的數組,全局變數length記錄長度 int main() { int N; while( ~scanf("%d", & ...
  • PID對象是代表Actor對象的進程,是能過Actor.Spawn(props)獲取的;它有什麼成員呢?既然代理Actor,首先有一個ID,標識自己是誰,Actor在Spawn時可以命名這個ID,否則會自動生成。還有三種向郵箱發消息的方法,Tell(),Request(),RequestAsync(... ...
  • 這是我第一次主導項目,沒有什麼經驗。本來項目的開發周期為十天,由於沒有什麼經驗,導致開發時間由十天變為了二十一天, 一直到今天才算是正式結束,明天交付給客戶。回想起這幾天的經過,想總總結一下。 1、在項目剛開始的時候,沒有對項目的整體有一個概念性的認識,雖然是看了需求文檔,但是需求文檔上寫的很模糊。 ...
  • Office Online Server是微軟開發的一套基於Office實現線上文檔預覽編輯的技術框架(支持當前主流的瀏覽器,且瀏覽器上無需安裝任何插件,支持word、excel、ppt、pdf等文檔格式),其客戶端通過WebApi方式可集成到自已的應用中,支持Java、C#等語言。Office O... ...
  • 1、前言 上個星期完成了surging 的0.9.0.1 更新工作,此版本通過nuget下載引擎組件,下載後,無需通過代碼build集成,引擎會通過Sidecar模式自動掃描裝配異構組件來構建服務引擎,而這篇將介紹淺談surging服務引擎中的rabbitmq組件和容器化部署 surging源碼下載 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...