CameraPhotoFileFormat

@objc(GSCameraPhotoFileFormat)
public enum CameraPhotoFileFormat : Int, Comparable, CustomStringConvertible

Photo file formats.

  • Photo stored in JPEG format.

    Declaration

    Swift

    case jpeg
  • dng

    Photo stored in DNG format.

    Declaration

    Swift

    case dng
  • Photo stored in both DNG and JPEG formats.

    Declaration

    Swift

    case dngAndJpeg
  • Debug description.

    Declaration

    Swift

    public var description: String { get }
  • Comparator.

    Declaration

    Swift

    public static func < (lhs: CameraPhotoFileFormat, rhs: CameraPhotoFileFormat) -> Bool
  • Set containing all possible values.

    Declaration

    Swift

    public static let allCases: Set<CameraPhotoFileFormat>