---
layout: default-layout
title: EnumImageColourMode - Dynamsoft Document Normalizer Python Enumerations
description: "Explore EnumImageColourMode values in Dynamsoft Document Normalizer Python API and learn how they define status, configuration, and processing behavior."
keywords: Mapping status
---

# Enumeration ImageColourMode

`EnumImageColourMode` describes the output colour mode of the normalized image.

```python
class EnumImageColourMode(IntEnum):
    # Output image in colour mode.
    ICM_COLOUR = 0,    
    # Output image in grayscale mode.
    ICM_GRAYSCALE = 1,     
    # Output image in binary mode.
    ICM_BINARY = 2
```