Table of contents

Enumeration ImageFileFormat

ImageFileFormat defines the file format of the image file.

  • Objective-C
  • Swift
typedef NS_ENUM(NSInteger, DSImageFileFormat)
{
    DSImageFileFormatJPEG = 0,
    DSImageFileFormatPNG = 1,
    DSImageFileFormatBMP = 2,
    DSImageFileFormatPDF = 3
};
public enum ImageFileFormat : Int
{
    case jpeg = 0
    case png = 1
    case bmp = 2
    case pdf = 3
}

This page is compatible for: