The library that I am using for PDF generation is COM based and I'm using C#.
But as for convertor, even if that is a .java based library or something, I can always use that in my application...
Main Topics
Browse All TopicsI need a PDF convertor that converts files from different PDF versions to PDF v1.3.
The requirement seems a bit strange but I am currently writing an application that merges various file types (.doc, .xls, .rtf, .ppt, .pdf) and then makes a PDF out of it. The library I had had a limitation that it only worked with pdf v1.3 files while merging. Now, the workaround I have in mind is that first convert all pdf files in the file list to v1.3 but not able to find out how to do it...
Can anyone help on this?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
What you want to do is a non-trivial task, and I doubt that you will find a solution for this that is PDF based. The problem is that you have to render your PDF to convert some of the features of PDF 1.4 or 1.5. For example transparency needs to be rendered to a non-transparent image in order to put it into a PDF 1.3 file. Layers (a PDF 1.5 feature) needs to be merged in order to make them 1.3 compatible. You could use Adobe's PDF library (5 digit price tag) for this.
One way to accomplish this is by converting the PDF files to Postscript first, and then back to PDF. You can do this with Ghostscript (http://www.ghostcript.com
Business Accounts
Answer for Membership
by: leeprovoostPosted on 2003-12-24 at 00:34:57ID: 9995708
in what language are you doing it?