狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識(shí)交流 PMS教程 CRM教程 開(kāi)發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

用C#寫個(gè)PDF批量合并工具簡(jiǎn)化日常工作

freeflydom
2024年9月24日 9:43 本文熱度 802

一. 前言

由于項(xiàng)目需要編寫大量的材料,以及各種簽字表格、文書等,最后以PDF作為材料交付的文檔格式,過(guò)程文檔時(shí)有變化或補(bǔ)充,故此處理PDF文檔已經(jīng)成為日常工作的一部分。
網(wǎng)上有各種PDF處理工具,總是感覺(jué)用得不跟手。最后回顧自己的需求總結(jié)為以下幾項(xiàng):
1.可以便捷、快速的對(duì)多份PDF進(jìn)行合并。
2.可以從源PDF選取指定頁(yè)碼進(jìn)行合并。
3.可以從單個(gè)PDF提取特定頁(yè)碼(拆分PDF)。
4.對(duì)多個(gè)PDF分組,合并作為最終PDF的導(dǎo)航書簽,可用作快速定位。
5.統(tǒng)一合成后PDF頁(yè)面尺寸,如統(tǒng)一為A4幅面。
6.操作盡量簡(jiǎn)便,支持文件拖放,不需要花巧的東西。

二、最終效果

首先,我們看看最終成品:

①.可以批量添加多個(gè)PDF到合并列表,也可以從資源管理器將文件批量拖進(jìn)來(lái)實(shí)現(xiàn)添加。
②.定義分組標(biāo)題對(duì)文件進(jìn)行分組,并作為合并后PDF的書簽。
③.將列表中PDF批量合并到一個(gè)文件中。如果只有一個(gè)PDF,而且定義了頁(yè)碼范圍,則轉(zhuǎn)換為拆分功能。
④.顯示PDF總頁(yè)數(shù),如果只需提取部分內(nèi)容,可以定義頁(yè)碼范圍。
⑤.可以更改合并后PDF頁(yè)面的尺寸,統(tǒng)一為A4、B4或A5幅面。

三、功能實(shí)現(xiàn)

搜索發(fā)現(xiàn)github有個(gè)開(kāi)源的PdfBinder1.2(https://github.com/schourode/pdfbinder)比較接近想要的效果,本著能省即省、成本最低、能效更高的原則,直接以此為基礎(chǔ)進(jìn)行擴(kuò)展,開(kāi)發(fā)自身所需的功能。

1.添加文件

這個(gè)比較簡(jiǎn)單,點(diǎn)擊按鈕后彈出選擇對(duì)話框,將選擇的文件逐一加到ListBox中。

private void addFileButton_Click(object sender, EventArgs e){    
   if (addFileDialog.ShowDialog() == DialogResult.OK)    {        
           foreach (string file in addFileDialog.FileNames)        {            AddInputFile(file);        }        UpdateUI();    } }

其中AddInputFile函數(shù)單獨(dú)編寫是為了在拖放事件中復(fù)用。

public void AddInputFile(string file){    
   int Pages = 0;    
   switch (Combiner.TestSourceFile(file, out Pages))    {        
   case Combiner.SourceTestResult.Unreadable:            MessageBox.Show(string.Format(resources.GetString("Error.Unreadable.Text"), file), resources.GetString("Error.Unreadable.Title"), MessageBoxButtons.OK, MessageBoxIcon.Error);            
   break;        
   case Combiner.SourceTestResult.Protected:            MessageBox.Show(string.Format(resources.GetString("Error.Protected.Text"), file), resources.GetString("Error.Protected.Title"), MessageBoxButtons.OK, MessageBoxIcon.Hand);            
   break;        
   case Combiner.SourceTestResult.Ok:            FileListBox.Items.Add(new PdfInfo() { Fullname = file, Filename = Path.GetFileName(file), Ranges = "", TotalPages = Pages });            
   break;    } }

這里對(duì)PDF文件有效性進(jìn)行了檢查,而且添加到ListBox的是PdfInfo對(duì)象,它還記錄了總頁(yè)數(shù)、提取的頁(yè)面范圍等信息。
文件拖放的實(shí)現(xiàn):

private void FileListBox_DragEnter(object sender, DragEventArgs e){
    e.Effect = e.Data.GetDataPresent(DataFormats.FileDrop, false) ? DragDropEffects.All : DragDropEffects.None;
}
private void FileListBox_DragDrop(object sender, DragEventArgs e){    
   var fileNames = (string[])e.Data.GetData(DataFormats.FileDrop);    Array.Sort(fileNames);    
   foreach (var file in fileNames)    {        AddInputFile(file);    }    UpdateUI(); }

2.文件分組(書簽)

using BookmarkName = System.String;
private void addBookmarkButton_Click(object sender, EventArgs e){    //未添加文件不處理    if (FileListBox.SelectedIndex < 0) return;    //如果選擇的書簽(組名),讀取名稱供修改    BookmarkName bookmark = "";    
   if (FileListBox.SelectedItem is BookmarkName)        bookmark = (BookmarkName)FileListBox.SelectedItem;    
   else    {        //如果選擇的是文件,提取文件名作默認(rèn)值        bookmark = ((PdfInfo)FileListBox.SelectedItem).Filename;        
       if (bookmark.Contains("."))            bookmark = bookmark.Substring(0, bookmark.LastIndexOf("."));    }    //如果輸入有效,添加書簽(組名)    BookmarkName newName = Interaction.InputBox(resources.GetString("SetBookmark.Prompt"), resources.GetString("SetBookmark.Title"), bookmark);    
   if (newName != "")    {        
       if (FileListBox.SelectedItem is BookmarkName)            //更新            FileListBox.Items[FileListBox.SelectedIndex] = newName;        
       else        {            //添加            FileListBox.Items.Insert(FileListBox.SelectedIndex, newName);            BookmarkCounter++;        }    } }

3.定義頁(yè)碼范圍

沒(méi)有定義頁(yè)碼范圍表示整個(gè)PDF進(jìn)行合并。定義了頁(yè)面范圍,合并時(shí)只提取相應(yīng)的頁(yè)面進(jìn)行合并。
頁(yè)碼范圍的格式與常見(jiàn)的打印功能的頁(yè)碼定義相一致,如:1,2,3,6-9。
這個(gè)操作放在右鍵彈出菜單中實(shí)現(xiàn)。

private void mnuSetPageRange_Click(object sender, EventArgs e)
{
    PdfInfo item = ((PdfInfo)FileListBox.SelectedItem);    
   string range = Interaction.InputBox(resources.GetString("SetPageRange.Prompt"), resources.GetString("SetPageRange.Title"), item.Ranges);    //內(nèi)容未變更的不用處理    if (range != item.Ranges)    {        
       if (range == "")        {            ((PdfInfo)FileListBox.Items[FileListBox.SelectedIndex]).Ranges = "";            
           return;        }        //針對(duì)逗號(hào)和空格做處理        string[] arr = range.Replace(",", ",").Replace(" ", "").Split(',');        
       range = "";        
       for (int i = 0; i < arr.Length; i++)        {            //用正則表達(dá)式判斷有效性            if ("" == arr[i]) continue;            
           if (Regex.IsMatch(arr[i], @"^\d+$") || Regex.IsMatch(arr[i], @"^\d+-\d+$"))                
               range += ("" == range ? "" : ",") + arr[i];            
           else            {                MessageBox.Show(resources.GetString("Error.RangeValid"));                return;            }        }        //輸入有效,更新        ((PdfInfo)FileListBox.Items[FileListBox.SelectedIndex]).Ranges = range;        UpdateUI();    } }

4.自定義顯示

為了在ListBox中顯示書簽、總頁(yè)數(shù)和提取頁(yè)碼范圍,需要接管ListBox的繪制事件。

private void FileListBox_DrawItem(object sender, DrawItemEventArgs e){
    ...
    StringFormat Formater = new StringFormat();
    Formater.Alignment = StringAlignment.Near;
    Formater.LineAlignment = StringAlignment.Center;
    Formater.Trimming = StringTrimming.EllipsisPath;
    Formater.FormatFlags = StringFormatFlags.NoWrap;    //繪制書簽(分組名)
    if (FileListBox.Items[e.Index] is BookmarkName)
    {        //繪書簽(分組名)圖標(biāo)
        e.Graphics.DrawImage(addBookmarkButton.Image, e.Bounds.X, e.Bounds.Y + ((e.Bounds.Height - addBookmarkButton.Image.Height) /2));        //繪書簽(分組名)
        e.Graphics.DrawString((BookmarkName)FileListBox.Items[e.Index], e.Font, Brushes.Black
            , new Rectangle(e.Bounds.X + addBookmarkButton.Image.Width, e.Bounds.Y, e.Bounds.Width - RIGHT_MARGIN, e.Bounds.Height), Formater);        
       return;    }    //繪制PDF文件名    PdfInfo item = (PdfInfo)FileListBox.Items[e.Index];    e.Graphics.DrawString(showNameButton.Checked ? item.Fullname : item.Filename, e.Font, Brushes.Black        , new Rectangle(e.Bounds.X + (BookmarkCounter > 0 ? (int)(addBookmarkButton.Image.Width * 1.5) : 0), e.Bounds.Y, e.Bounds.Width - RIGHT_MARGIN, e.Bounds.Height), Formater);    //繪制頁(yè)碼    Formater.Alignment = StringAlignment.Far;    e.Graphics.DrawString((item.Ranges == "" ? "" : item.Ranges + " | ")        + string.Format(item.TotalPages>1 ? resources.GetString("Pages"): resources.GetString("Page"), item.TotalPages)        , e.Font, Brushes.Gray, e.Bounds, Formater); }

5.定義頁(yè)面尺寸

默認(rèn)是原始尺寸(不做調(diào)整),可根據(jù)需要選擇為A4、A5、B4。

private void OnPageSizeChanged(object sender, EventArgs e){
    PageSizeButton.Tag = ((ToolStripMenuItem)sender).Tag;
    mnuPageSize_Original.Checked = sender == mnuPageSize_Original;
    mnuPageSize_A4.Checked = sender == mnuPageSize_A4;
    mnuPageSize_A5.Checked = sender == mnuPageSize_A5;
    mnuPageSize_B4.Checked = sender == mnuPageSize_B4;    
   if (mnuPageSize_Original.Checked)        PageSizeButton.Text = resources.GetString("PageSizeButton.Text");    
   else        PageSizeButton.Text = resources.GetString("PageSizeButton.Text") + ":" + ((ToolStripMenuItem)sender).Text; }

6.PDF批量合并

這個(gè)比較長(zhǎng),有興趣的可以到https://github.com/kacarton/PDFBinder2下載源碼自己看,以下摘錄核心部分。

private void combineButton_Click(object sender, EventArgs e){    
   if (saveFileDialog.ShowDialog() == DialogResult.OK)    {        
       using (var combiner = new Combiner(saveFileDialog.FileName, (PDFBinder.PageSize)PageSizeButton.Tag))        {            progressBar.Visible = true;            
           this.Enabled = false;            
           for (int i = 0; i < FileListBox.Items.Count; i++)            {                
               if (FileListBox.Items[i] is BookmarkName)                    //向PDF添加書簽                    combiner.AddBookmark((string)FileListBox.Items[i]);                
               else                    //合并PDF                    combiner.AddFile(((PdfInfo)FileListBox.Items[i]).Fullname, ((PdfInfo)FileListBox.Items[i]).Ranges);                //刷新進(jìn)度                progressBar.Value = (int)(((i + 1) / (double)FileListBox.Items.Count) * 100);            }            
           this.Enabled = true;            progressBar.Visible = false;        }        System.Diagnostics.Process.Start(saveFileDialog.FileName);    } }
class Combiner : IDisposable{    
   public void AddFile(string fileName, string range)
   {        
       var reader = new PdfReader(fileName);        ....        _document.NewPage();                        //添加書簽        if (!string.IsNullOrEmpty(this.BookMarkName))        {            Chapter _chapter = new Chapter("", 1);            _chapter.BookmarkTitle = this.BookMarkName;            _chapter.BookmarkOpen = true;            _document.Add(_chapter);            
           this.BookMarkName = null;        }        
       if (_newPageSize == PageSize.Original)        {            
           var page = _pdfCopy.GetImportedPage(reader, i);            _pdfCopy.AddPage(page);        }        
       else        {            
           var page = _writer.GetImportedPage(reader, i);            _document.Add(iTextSharp.text.Image.GetInstance(page));        }        reader.Close();    } }

7.其他

UI同步、文件移除、上移、下移、排序、多語(yǔ)言支持這些比較簡(jiǎn)單就不展開(kāi)了。

四、代碼開(kāi)源

源碼已發(fā)布在github上,網(wǎng)址:PDFBinder2 https://github.com/kacarton/PDFBinder2,歡迎交流。



該文章在 2024/9/24 9:50:50 編輯過(guò)
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對(duì)中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國(guó)內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對(duì)港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場(chǎng)、車隊(duì)、財(cái)務(wù)費(fèi)用、相關(guān)報(bào)表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場(chǎng)作業(yè)而開(kāi)發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉(cāng)儲(chǔ)管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購(gòu)管理,倉(cāng)儲(chǔ)管理,倉(cāng)庫(kù)管理,保質(zhì)期管理,貨位管理,庫(kù)位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號(hào)管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時(shí)間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved