Hi Marco,
Thank you for using Syncfusion Products,
It is possible to reduce the size of the generated pdf, for
this you need to use different compression level that would result in reduced
size pdf. Please check with the below code snippet and let me know if these helps.
//Creates
a new Pdf loaded document
PdfLoadedDocument ldoc = new PdfLoadedDocument("Sample.pdf");
//Set
Compression level
ldoc.Compression
= PdfCompressionLevel.Best;
//Save
the document and dispose it.
ldoc.Save("Output.pdf");
ldoc.Close();
Thanks,
Karthik.