---
layout: default-layout
title: ImageFileFormat - Dynamsoft Core Python Enumerations
description: The enumeration ImageFileFormat in Dynamsoft Core Python Edition lists the supported image file formats (JPEG, PNG, BMP, PDF, etc.).
keywords: Image file format
codeAutoHeight: true
---

# Enumeration ImageFileFormat

`ImageFileFormat` categorizes the possible formats of image files.


```python
class EnumImageFileFormat(IntEnum):
    # JPEG image format.
    IFF_JPEG = 0,
    # PNG image format.
    IFF_PNG = 1,
    # BMP (Bitmap) image format.
    IFF_BMP = 2,
    # PDF (Portable Document Format) format.
    IFF_PDF = 3
```