PdfSaveOptions options = new PdfSaveOptions();
options.ColorMode = Aspose.Words.Saving.ColorMode.Grayscale;
Document doc = new Document(“input.docx”);
doc.Save(“Out_AW176.pdf”,options);
This information worked MOSTLY. The images were made Rich Black which is still CMYK we are trying to get a color document to PDF in Black/Greyscale.
Any ideas?
Thanks so much.