I'd like to do the following tasks on pdf files from classic asp
- get page count
- split pages
- save splitted pdf
Is there a nice and easy library available?
-Vivek
I'd like to do the following tasks on pdf files from classic asp
Is there a nice and easy library available?
-Vivek
Try searching for "ActiveX PDF". In Classic ASP you can create any ActiveX object like so:
Set o = Server.CreateObject("PDF.ClassName")
o.DoSomething
So if you find a control that is an ActiveX control, you'll be able to use it.
If you have no problems to use a commandline tool with server.CreateObject ("WScript.Shell")
then I would recommend PDFTK - The PDF Toolkit. I used it in a project with PDFs up to 500 MB without any problems.
This is what PDFTK can do for you: