Hi
Thanks for your inquiry. I think, there is no difference, which method of compression you use. Size of PDF documents can be reduced only by doing the following:
1. Decreasing size of images inside PDF (this can be done only be decreasing quality).
2. Subseting fonts, which are embedded into the PDF documents. (Aspose.Words does this by default).
3. Compression of text (Usually decreasing of size is not very big)
Please see the following code:
// Open source document.
Document doc = new Document("C:\\Temp\\in.docx");
// Set PdfSaveOptions
PdfSaveOptions opt = new PdfSaveOptions();
opt.SaveFormat = SaveFormat.Pdf;
opt.TextCompression = PdfTextCompression.Flate;
opt.JpegQuality = 60;
doc.Save("C:\\Temp\\out.pdf", opt);
Regarding Aspose.Cells and Aspose.Slides, could you please write to the appropriate forums and my colleagues will answer you shortly.
Best regards,
Andrey Noskov
Developer/Technical Support
Aspose Auckland Team