Enum ColorMode

Enum ColorMode

Namespace: Aspose.Words.Saving
Assembly: Aspose.Words.dll (26.4.0)

Specifies how colors are rendered.

public enum ColorMode

Fields

Grayscale = 1

Rendering with colors in a range of gray shades from white to black.

Normal = 0

Rendering with unmodified colors.

Examples

Shows how to change image color with saving options property.

Document doc = new Document(MyDir + "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.
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions { ColorMode = colorMode };

doc.Save(ArtifactsDir + "PdfSaveOptions.ColorRendering.pdf", pdfSaveOptions);
 English