programming to work with pdf file

  • Thread starter Thread starter David C
  • Start date Start date
D

David C

I am looking for a way to
- loop through PDF files

- Within each pdf file, split it into two files (page 1 to file, and the
rest to another, for example).

So one PDF file gets split into two. What utility can I use to do that?

As a side note, I've used AxPdfLib. Documentation is so non-existant.
Where can I find documentation?
 
Looping through the pdf files is the easy part. Just call GetFiles method of
a directory info (passing in soemthing like "*.pdf") and then iterate through
the returned FileInfo array.

As for pdf libraries, there are a few good .NET open souorce ones here:
http://csharp-source.net/open-source/pdf-libraries

Hope this helps

Brian Delahunty
Ireland
 
Thanks. I browsed through those.

They all show you how to create new PDF files. I am looking to take
EXISTING PDF files and split them up.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top