Merge PDF files with iTextDotNet and .NET

In the previous post I showed a class to merge PDF files using iText#, but it seems that there’s a better approach using iTextDotNet:

csharp:
using com.lowagie.tools;

class Program
{
    static void Main(string[] args)
    {
        string[] lista = new string[] { "Meijer.pdf", "P330.pdf", "result.pdf" };
        concat_pdf.main(lista);
    }
}

As you can see this is a cleaner and simpler way to merge pdf files. You can download the iTextDotNet .NET Library from this blog or the official Website.

2 Responses to “Merge PDF files with iTextDotNet and .NET”

Arthur Says:

Hello,

Thank for this post, but :

where do you find com.lowagie.tools ?

Is it a part of the textsharp lib ?

I didn’t find.

Thanks.

Arth’

alex Says:

It is part of iTextDotNet

Leave a Reply

(will not be published)

This entry was posted on Thursday, 19 July 2007 at 10:09 am in:

archives

links

others