Module tdlight.api

Class TdApi.PhotoSize

java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.PhotoSize
Enclosing class:
TdApi

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

    • 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
      See Also:
  • Constructor Details

    • 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 - String Image type (see https://core.telegram.org/constructor/photoSize).
      photo - File Information about the image file.
      width - int Image width.
      height - int Image height.
      progressiveSizes - int[] Sizes of progressive JPEG file prefixes, which can be used to preliminarily show the image; in bytes.
    • PhotoSize

      public PhotoSize(DataInput input) throws IOException
      Describes an image in JPEG format.
      Throws:
      IOException
  • Method Details