Package org.drinkless.tdlib
Class TdApi.PhotoSize
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.PhotoSize
- Enclosing class:
- TdApi
Describes an image in JPEG format.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.intImage height.Information about the image file.int[]Sizes of progressive JPEG file prefixes, which can be used to preliminarily show the image; in bytes.Image type (see https://core.telegram.org/constructor/photoSize).intImage width. -
Constructor Summary
ConstructorsConstructorDescriptionDescribes an image in JPEG format.PhotoSize(String type, TdApi.File photo, int width, int height, int[] progressiveSizes) Describes an image in JPEG format. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
type
Image type (see https://core.telegram.org/constructor/photoSize). -
photo
Information about the image file. -
width
public int widthImage width. -
height
public int heightImage height. -
progressiveSizes
public int[] progressiveSizesSizes of progressive JPEG file prefixes, which can be used to preliminarily show the image; in bytes. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
PhotoSize
public PhotoSize()Describes an image in JPEG format. -
PhotoSize
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.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-