Class TdApi.PhotoSize

  • Enclosing class:
    TdApi

    public static class TdApi.PhotoSize
    extends TdApi.Object
    Describes an image in JPEG format.
    • Field Detail

      • type

        public String type
        Image type (see https://core.telegram.org/constructor/photoSize).
      • photo

        public TdApi.File photo
        Information about the image file.
      • width

        public int width
        Image width.
      • height

        public int height
        Image height.
      • progressiveSizes

        public int[] progressiveSizes
        Sizes of progressive JPEG file prefixes, which can be used to preliminarily show the image; in bytes.
      • CONSTRUCTOR

        public static final int CONSTRUCTOR
        Identifier uniquely determining type of the object.
        See Also:
        Constant Field Values
    • Constructor Detail

      • PhotoSize

        public PhotoSize()
        Describes an image in JPEG format.
      • PhotoSize

        public PhotoSize​(String type,
                         TdApi.File photo,
                         int width,
                         int height,
                         int[] progressiveSizes)
        Describes an image in JPEG format.
        Parameters:
        type - Image type (see https://core.telegram.org/constructor/photoSize).
        photo - Information about the image file.
        width - Image width.
        height - Image height.
        progressiveSizes - Sizes of progressive JPEG file prefixes, which can be used to preliminarily show the image; in bytes.