vote up 0 vote down star

How can I combine multiple PDFs into one PDF without a 3rd party component?

flag

6 Answers

vote up 0 vote down

ITextSharp is the way to go

link|flag
vote up 0 vote down

Although it has already been said, you can't manipulate PDFs with the built-in libraries of the .NET Framework. I can however recommend http://itextsharp.sourceforge.net/">iTextSharp, which is a .NET port of the Java iText. I have played around with it, and found it to be a very easy tool to use.

link|flag
vote up 1 vote down

As others have said, there is nothing built in to do that task. Use iTextSharp with this example code.

link|flag
vote up 1 vote down

I don't think you can. Opensource component PDFSharp has that functionality, and a nice source code sample on file combining

link|flag
vote up 2 vote down

The .NET Framework does not contain the ability to modify/create PDFs. You need a 3rd party component to accomplish what you are looking for.

link|flag
vote up 2 vote down

AFAIK C# has no built-in support for handling PDF so what you are asking can not be done without using a 3rd party component or a COTS library.

Regarding libraries there is a myriad of possibilities. Just to point a few:

http://csharp-source.net/open-source/pdf-libraries

http://www.codeproject.com/KB/graphics/giospdfnetlibrary.aspx

http://www.pdftron.com/net/index.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.