ThumbnailExtension

public enum ThumbnailExtension : BoxEnum

Defines the file extension of a thumbnail image file.

  • jpg

    The file extension for Joint Photographic Experts Group (JPEG) thumbnail images

    Declaration

    Swift

    case jpg
  • png

    The file extension for Portable Network Graphic (PNG) thumbnail images

    Declaration

    Swift

    case png
  • A custom file extension for thumbnail images that is not yet implemented. Check the list of supported types

    Declaration

    Swift

    case customValue(String)
  • Declaration

    Swift

    public init(_ value: String)
  • Returns string representation of suffix

    Declaration

    Swift

    public var description: String { get }