Click here to Skip to main content
15,886,806 members
Articles / Desktop Programming / Windows Forms

GIOS PDF Splitter and Merger

Rate me:
Please Sign up or sign in to vote.
4.92/5 (45 votes)
28 Nov 2006LGPL34 min read 937K   4.1K   111  
The first open source PDF splitter and merger tool written in C#.
//============================================================================
//Gios PDF SPlitter And Merger - A library for splitting and merging Pdf Documents in C#
//Copyright (C) 2005  Paolo Gios - www.paologios.com
//
//This library is free software; you can redistribute it and/or
//modify it under the terms of the GNU Lesser General Public
//License as published by the Free Software Foundation; either
//version 2.1 of the License, or (at your option) any later version.
//
//This library is distributed in the hope that it will be useful,
//but WITHOUT ANY WARRANTY; without even the implied warranty of
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
//Lesser General Public License for more details.
//
//You should have received a copy of the GNU Lesser General Public
//License along with this library; if not, write to the Free Software
//Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
//=============================================================================
using System;
using System.Text;
using System.Collections;
using System.IO;
using System.Text.RegularExpressions;

namespace Gios.Pdf.SplitMerge
{
	internal class PdfSplitter
    {
        internal Hashtable sObjects;
        internal ArrayList pageNumbers;
        internal Hashtable  transHash;
        internal PdfFile PdfFile;
		private void OnProgress(int part, int total){}		
		public event ProgressDelegate ProgressEvent;
		internal PdfSplitter()
		{
           this.ProgressEvent=new ProgressDelegate(this.OnProgress);
		}
		internal void Load(PdfFile PdfFile,int[] PageNumbers, int startNumber)
		{
			this.PdfFile = PdfFile;
			this.pageNumbers = new ArrayList();
			this.sObjects = new Hashtable();
			int part=0;
			int total=PageNumbers.Length;
			foreach (int PageNumber in PageNumbers)
			{
				this.ProgressEvent(part,total);
				PdfFileObject page = PdfFile.PageList[PageNumber] as PdfFileObject;
				page.PopulateRelatedObjects(PdfFile, this.sObjects);
				this.pageNumbers.Add(page.number);
				part++;
			}
			this.transHash = this.CalcTransHash(startNumber);
			foreach (PdfFileObject pfo in this.sObjects.Values)
			{
				pfo.Transform(transHash);
			}
		}     
        private Hashtable CalcTransHash(int startNumber)
        {
            Hashtable ht = new Hashtable();
            ArrayList al = new ArrayList();
            foreach (PdfFileObject pfo in this.sObjects.Values)
            {
                al.Add(pfo);
            }
            al.Sort(new PdfFileObjectNumberComparer());
            int number = startNumber;
            foreach (PdfFileObject pfo in al)
            {
                ht.Add(pfo.number, number);
                number++;
            }
            return ht;
        }       
        
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Web Developer
Italy Italy
Freelance software ASPNET / C# Software Developer

I live in Torino, Italy

my homepage is: http://www.paologios.com

Comments and Discussions