> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ImageTypeEnum

ImageTypeEnum enumeration constants are used to convert coordinates between different image planes and modification states of the [ImageDocument](/fine-reader/engine/api-reference/image-related-objects/imagedocument) object, which represents an open image. The open image contains one image plane for each color type (black-and-white, gray, or color), and can also contain a preview image plane. The image can be subjected to modifications during opening and preprocessing, and the constants of this enumeration refer to original image without any modifications and to the image with all the modifications up to the moment when the [CoordinatesConverter](/fine-reader/engine/api-reference/image-related-objects/coordinatesconverter) object was saved.

```
typedef enum {
 IT_Base,
 IT_Modified,
 IT_Preview
} ImageTypeEnum;
```

## Elements

| Name           | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| -------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| IT\\\_Base     | The original image.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| IT\\\_Modified | A modified image. This image plane corresponds to the modification state of the image at the moment when the [CoordinatesConverter](/fine-reader/engine/api-reference/image-related-objects/coordinatesconverter) object was saved.                                                                                                                                                                                                                                                                                                                                              |
| IT\\\_Preview  | Preview image. <br /><br /> **Note:** *This image plane is created on a call to the [PreviewImage](/fine-reader/engine/api-reference/image-related-objects/imagedocument/getpreviewimagespecificsize-method) or [PreviewImageDefaultSize](/fine-reader/engine/api-reference/image-related-objects/imagedocument/getpreviewimage-method) property of the [ImageDocument](/fine-reader/engine/api-reference/image-related-objects/imagedocument) object. If the preview image plane hasn't been created yet, an error will occur if you try to use it for coordinates conversion.* |

## Used in

[ICoordinatesConverter::ConvertCoordinates](/fine-reader/engine/api-reference/image-related-objects/coordinatesconverter/convertcoordinates-method)
