I am converting an html string to pdf using HtmlConverter Convert method. The resulting size of the pdf document created on my development machine is as follows:Using _PDFDoc.Compression = PdfCompressionLevel.None - 994 KB
Using _PDFDoc.Compression = PdfCompressionLevel.BestSpeed - 117 KB
On our Windows Server 2012 machine using the same code the resulting file size using the BestSpeed setting is 1941 KB
No errors are thrown but it seems like no compression is being performed on the server. What might I be missing on the server to cause this?