ImageSizeRequest

public enum ImageSizeRequest

Enumeration passed to the TerminalDelegate.createImage to configure the desired values for width and height.

  • Make the best decision based on the image data

    Declaration

    Swift

    case auto
  • Occupy exactly the number of cells

    Declaration

    Swift

    case cells(Int)
  • Occupy exactly the pixels listed

    Declaration

    Swift

    case pixels(Int)
  • Occupy a percentange size relative to the dimension of the visible region

    Declaration

    Swift

    case percent(Int)