ImageFormat

Objective-C

enum ImageFormat : NSInteger {}

Swift

enum ImageFormat : Int, @unchecked Sendable

Constants indicating image file formats.

  • Bmp format.

    Declaration

    Objective-C

    ImageFormatBmp

    Swift

    case bmp = 0
  • Jpeg format.

    Declaration

    Objective-C

    ImageFormatJpeg

    Swift

    case jpeg = 1
  • Gif format.

    Declaration

    Objective-C

    ImageFormatGif

    Swift

    case gif = 2
  • Png format.

    Declaration

    Objective-C

    ImageFormatPng

    Swift

    case png = 3
  • Tga format.

    Declaration

    Objective-C

    ImageFormatTga

    Swift

    case tga = 4
  • WebP format format.

    Declaration

    Objective-C

    ImageFormatWebP

    Swift

    case webP = 5
  • Auto-Detect format.

    Declaration

    Objective-C

    ImageFormatAutoDetect

    Swift

    case autoDetect = 6