文檔首頁>>Spire.PDF教程-文檔操作>>Spire.PDF 教程:如何在C#中檢測和刪除PDF中的空白頁
Spire.PDF 教程:如何在C#中檢測和刪除PDF中的空白頁
掃描雙面打印紙張文檔所創(chuàng)建的PDF可能包含空白頁面。 也可以有意插入空白頁面。 在本文中,您將學(xué)習(xí)如何使用C#使用Spire.PDF檢測和刪除PDF文件中的空白頁面。
空白頁面被廣義地定義為不包含任何內(nèi)容的頁面。 Spire.PDF提供了一個(gè)方法IsBank來檢測PDF頁面是否絕對(duì)空白。 但是,一些“空白頁”實(shí)際上可以包含白色圖像,使用IsBank方法不會(huì)將其視為空白。 要檢測這些白色但不是空白頁面,我們使用在步驟1中定義的自定義方法IsImageBlank。
注意:此解決方案必須應(yīng)用許可證才能完成,如果你沒有授權(quán)請(qǐng)咨詢官網(wǎng)客服。
Step 1: 創(chuàng)建一個(gè)自定義的方法來判斷圖像是否為空白。
public static bool IsImageBlank(Image image) { Bitmap bitmap = new Bitmap(image); for (int i = 0; i < bitmap.Width; i++) { for (int j = 0; j < bitmap.Height; j++) { Color pixel = bitmap.GetPixel(i, j); if (pixel.R < 240 || pixel.G < 240 || pixel.B < 240) { return false; } } } return true; }
Step 2: 如上所述,該解決方案需要申請(qǐng)?jiān)S可證,然后可以調(diào)用IsBlank方法和IsImageBlank方法來檢測PDF頁面是否為空白或包含空白圖像,并使用Pages.RemoveAt(int index)方法刪除空白頁面。
static void Main(string[] args) { //apply license Spire.License.LicenseProvider.SetLicenseFileName("license.elic.xml"); //create a PdfDocument object PdfDocument document = new PdfDocument(); //load a sample file document.LoadFromFile("sample.pdf"); //traverse each page in the document for (int i = document.Pages.Count - 1; i >= 0; i--) { //detect if a page is blank if (document.Pages[i].IsBlank()) { //remove the blank page document.Pages.RemoveAt(i); } else { //save PDF page as image Image image = document.SaveAsImage(i, PdfImageType.Bitmap); //detect if a page contains blank image if (IsImageBlank(image)) { //remove the page that contains blank image document.Pages.RemoveAt(i); } } } //save to file document.SaveToFile("RemoveBlankPage.pdf", FileFormat.PDF); }
輸出:
完整C#代碼
static void Main(string[] args) { //apply license Spire.License.LicenseProvider.SetLicenseFileName("license.elic.xml"); //create a PdfDocument object PdfDocument document = new PdfDocument(); //load a sample file document.LoadFromFile("sample.pdf"); //traverse each page in the document for (int i = document.Pages.Count - 1; i >= 0; i--) { //detect if a page is blank if (document.Pages[i].IsBlank()) { //remove the blank page document.Pages.RemoveAt(i); } else { //save PDF page as image Image image = document.SaveAsImage(i, PdfImageType.Bitmap); //detect if a page contains blank image if (IsImageBlank(image)) { //remove the page that contains blank image document.Pages.RemoveAt(i); } } } //save to file document.SaveToFile("RemoveBlankPage.pdf", FileFormat.PDF); } //judge if an image is blank public static bool IsImageBlank(Image image) { Bitmap bitmap = new Bitmap(image); for (int i = 0; i < bitmap.Width; i++) { for (int j = 0; j < bitmap.Height; j++) { Color pixel = bitmap.GetPixel(i, j); if (pixel.R < 240 || pixel.G < 240 || pixel.B < 240) { return false; } } } return true; }