Table of contents

Enumeration ImageFileFormat

ImageFileFormat categorizes the possible formats of image files.

  • JavaScript
enum EnumImageFileFormat {
    /** 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
}

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: