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!>
Thanks for joining our community and helping improve Syncfusion products!
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();
return stream;
}
The PDF in question can be located here:
I've tried to take other similar size PDFs - it was noticeably faster.