# eGraphicFieldType

`eGraphicFieldType` enumeration contains identifiers determining the logical type of the graphic data obtained while reading document filling fields or barcodes.

```java
public class eGraphicFieldType {
    public static final int GF_PORTRAIT = 201;
    public static final int GF_FINGERPR = 202;
    public static final int GF_EYE = 203;
    public static final int GF_SIGNATURE = 204;
    public static final int GF_BAR_CODE = 205;
    public static final int GF_PROOF_OF_CITIZENSHIP = 206;
    public static final int GF_DOCUMENT_IMAGE = 207;
    public static final int GF_COLOR_DYNAMIC = 209;
    public static final int GF_GHOST_PORTRAIT = 210;
    public static final int GF_STAMP = 211;
    public static final int GF_PORTRAIT_OF_CHILD = 212;
    public static final int GF_OTHER = 250;
    public static final int GF_FINGER_LEFT_THUMB = 300;
    public static final int GF_FINGER_LEFT_INDEX = 301;
    public static final int GF_FINGER_LEFT_MIDDLE = 302;
    public static final int GF_FINGER_LEFT_RING = 303;
    public static final int GF_FINGER_LEFT_LITTLE = 304;
    public static final int GF_FINGER_RIGHT_THUMB = 305;
    public static final int GF_FINGER_RIGHT_INDEX = 306;
    public static final int GF_FINGER_RIGHT_MIDDLE = 307;
    public static final int GF_FINGER_RIGHT_RING = 308;
    public static final int GF_FINGER_RIGHT_LITTLE = 309;
}
```

| Constant                       | Description                               |
| ------------------------------ | ----------------------------------------- |
| **GF\_PORTRAIT**               | Photo of the document owner               |
| **GF\_FINGERPR**               | Fingerprint of the document owner         |
| **GF\_EYE**                    | Iris of the document owner image          |
| **GF\_SIGNATURE**              | Signature of the document owner           |
| **GF\_BAR\_CODE**              | Barcode image                             |
| **GF\_PROOF\_OF\_CITIZENSHIP** | Image of the citizenship proving document |
| **GF\_DOCUMENT\_IMAGE**        | Document image                            |
| **GF\_COLOR\_DYNAMIC**         | Color dynamic area in the document        |
| **GF\_GHOST\_PORTRAIT**        | Ghost portrait                            |
| **GF\_STAMP**                  | Stamp                                     |
| **GF\_PORTRAIT\_OF\_CHILD**    | Portrait of child                         |
| **GF\_OTHER**                  | Other image type                          |
| **GF\_FINGER\_LEFT\_THUMB**    | Fingerprint, left thumb                   |
| **GF\_FINGER\_LEFT\_INDEX**    | Fingerprint, left index                   |
| **GF\_FINGER\_LEFT\_MIDDLE**   | Fingerprint, left middle                  |
| **GF\_FINGER\_LEFT\_RING**     | Fingerprint, left ring                    |
| **GF\_FINGER\_LEFT\_LITTLE**   | Fingerprint, left little                  |
| **GF\_FINGER\_RIGHT\_THUMB**   | Fingerprint, right thumb                  |
| **GF\_FINGER\_RIGHT\_INDEX**   | Fingerprint, right index                  |
| **GF\_FINGER\_RIGHT\_MIDDLE**  | Fingerprint, right middle                 |
| **GF\_FINGER\_RIGHT\_RING**    | Fingerprint, right ring                   |
| **GF\_FINGER\_RIGHT\_LITTLE**  | Fingerprint, right little                 |
