My client has a multi-page PDF file. They need it split by page. Does anyone know of a way to do this - preferably in C#.
I did this using ITextSharp -- there are commercial options that may have a good API but this is open source and free, and not hard to use.
Check out this code, it's one of their code samples -- it's pretty good. It splits a PDF file into two files at the passed-in page number. You can modify it to loop and split page by page.