PDF version conversion

I am looking for a product that will take a pdf generated by SSRS in version 1.3 and convert it to pdf version 1.7. Does any of your offerings do this?

Option 2 would be an add-on to SSRS that would allow us to output 1.7 pdf’s directly from SSRS.

Thanks

Chris Nicolas

@Chiefschn1,

Thanks for contacting support.

We have an API named Aspose.Pdf for .NET which provides the feature to convert a PDF document with specific version to another version i.e. 1.7. Please take a look over following code snippet.

[C#]

// load input PDF file
Aspose.Pdf.Document doc = new Document("input.pdf");
// convert file to version 1.7
doc.Convert(new MemoryStream(),  PdfFormat.v_1_7, ConvertErrorAction.Delete);
// save the resultant file
doc.Save("Resultant.pdf");

I am afraid currently Aspose.Pdf for Reporting Services does not support the feature to generate the output directly in version 1.7. However for the sake of implementation, I have logged it as PDFRS-33548 in our issue tracking system. We will further look into the details of this requirement and will keep you updated on the status of correction. Please be patient and spare us little time.

We are sorry for this inconvenience.