I’m looking for an inexpensive way of batch converting 1300 PDF documents to XPS documents. I know that I can simply print them in that format, but that would take a very long time. Is there a way to do this programmatically in C#?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Depending on your definition of inexpensive there are a couple of options:
inexpensive = less than $1000:
You can use PDF2XPS for about $550: http://www.pdftron.com/pdf2xps/index.html
inexpensive = “free”:
You can follow the suggestions in this thread to use GhostScript to convert your PDFs to image files, then you can use the XpsDocumentWriter class to create your documents.