Welcome to the ASP.NET MVC feedback portal. We’re happy you’re here! If you have feedback on how to improve the ASP.NET MVC, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Hello!
I'm trying to convert PDF to A1B standard and it takes ~7 minutes to process. I take HttpPostedFile InputStream as the input (fileStream) and try to convert is as follows:

public Stream ConvertStream(Stream fileStream)

{

    var convertedDocument = new PdfLoadedDocument(fileStream) {Conformance = PdfConformanceLevel.Pdf_A1B};

    using var stream = new MemoryStream();

   

convertedDocument
.Save(stream);

   

convertedDocument
.Close(true);

    return stream;

}


The PDF in question can be located here: 

I've tried to take other similar size PDFs - it was noticeably faster.