Printing PDF Documents using C#

在報表應用中,PDF 是常被使用的文件格式,透過 iTextSharp 可以讓你即時(On-The-Fly)建立 PDF 文件。然而,如果你想自動將建立的文件內容輸出至印表機時,可能就會面臨苦無對策的窘境。因為,iTextSharp 並未提供實際的列印文件功能。所幸,這個問題可以藉由動態資料交換(Dynamic Data Exchange, DDE)技術獲得解決,也就是透過 DDE 從 Adobe Reader 來要求列印指定的文件檔案。在 .NET 中,我們可以使用 NDde 這個開放源碼專案,來輕鬆撰寫 DDE 連結的功能。

在接下來的程式碼範例中,除了參考「Printing PDF documents in C#」的做法外,同時亦採用 Clifton Nock 所著「Data Access Patterns」一書中的 Retryer Pattern。以下程式碼是實作 IRetryable 介面的類別,用來執行列印 PDF 文件的工作:
using System;
using System.Diagnostics;
using NDde;
using NDde.Client;

namespace PdfPrintExample
{
class PdfPrintOperation : IRetryable
{
private DdeClient _client;
private string _filePath;

public PdfPrintOperation(string filePath)
{
_filePath = filePath;
_client = new DdeClient("acroview", "control");
}

public bool Attemp()
{
try
{
_client.Connect();
return true;
}
catch (DdeException)
{
// ignore exception
}

return false;
}

public void Recover()
{
// try running Adobe Reader
Process p = new Process();
p.StartInfo.FileName = "AcroRd32.exe";
p.Start();
p.WaitForInputIdle();
}

public void Print()
{
_client.Execute("[DocOpen(\"" + _filePath + "\")]", 60000);
_client.Execute("[FilePrintSilent(\"" + _filePath + "\")]", 60000);
_client.Execute("[DocClose(\"" + _filePath + "\")]", 60000);
_client.Execute("[AppExit]", 60000);
}
}
}

以下是簡單的使用範例:
namespace PdfPrintExample
{
class Program
{
static void Main(string[] args)
{
PdfPrintOperation operation = new PdfPrintOperation(@"C:\sample.pdf");
Retryer retryer = new Retryer(operation);
retryer.Perform(10, 5000);
// print the file
operation.Print();
}
}
}

使用 Retryer Pattern 的好處在於連結 DDE Server 發生 DDEException 例外狀況時,可以自動嘗試重新連線,直到連接成功或是達到最大重試次數為止。

Download source code

參考資料:
Printing PDF documents in C#


Share/Save/Bookmark

0 comments :: Printing PDF Documents using C#

張貼留言