Table of contents

Enumeration ImageFileFormat

ImageFileFormat categorizes the possible formats of image files.

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

Is this page helpful?

YesYes NoNo

In this article: