Table of contents

Enumeration ImageFileFormat

ImageFileFormat categorizes the possible formats of image files.

@Retention(RetentionPolicy.CLASS)
public @interface EnumImageFileFormat {
    //JPEG image format.
    int IFF_JPEG = 0;
    //PNG image format.
    int IFF_PNG = 1;
    //BMP (Bitmap) image format.
    int IFF_BMP = 2;
    //PDF (Portable Document Format) format.
    int IFF_PDF = 3;
}

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: