Aspose::Words::Saving::FixedPageSaveOptions::get_ColorMode method

FixedPageSaveOptions::get_ColorMode method

Gets or sets a value determining how colors are rendered.

Aspose::Words::Saving::ColorMode Aspose::Words::Saving::FixedPageSaveOptions::get_ColorMode() const

Examples

Shows how to change image color with saving options property.

auto doc = MakeObject<Document>(MyDir + u"Images.docx");

// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
// Set the "ColorMode" property to "Grayscale" to render all images from the document in black and white.
// The size of the output document may be larger with this setting.
// Set the "ColorMode" property to "Normal" to render all images in color.
auto pdfSaveOptions = MakeObject<PdfSaveOptions>();
pdfSaveOptions->set_ColorMode(colorMode);

doc->Save(ArtifactsDir + u"PdfSaveOptions.ColorRendering.pdf", pdfSaveOptions);

See Also