We're using Syncfusion to convert PNG to PDFs. Some slow transactions prompted us to profile, and we were surprised at the results. Over 75% of the time for each transaction was simply spent writing the PDF to a Stream (PdfDocument#Save). The majority of this time was spent compressing the PDF:

Is there a way to use a different compression algorithm (like CompressFast) to speed up write time?