MadelineProto/docs/TD_docs/constructors/photoSize.md

48 lines
996 B
Markdown
Raw Normal View History

---
title: photoSize
description: Photo description
---
## Constructor: photoSize
[Back to constructors index](index.md)
Photo description
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|type|[string](../types/string.md) | Yes|Thumbnail type (see https: core.telegram.org/constructor/photoSize)|
|photo|[file](../types/file.md) | Yes|Information about photo file|
|width|[int](../types/int.md) | Yes|Photo width|
|height|[int](../types/int.md) | Yes|Photo height|
### Type: [PhotoSize](../types/PhotoSize.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$photoSize = ['_' => 'photoSize', 'type' => 'string', 'photo' => file, 'width' => int, 'height' => int];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "photoSize", "type": "string", "photo": file, "width": int, "height": int}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
photoSize={_='photoSize', type='string', photo=file, width=int, height=int}
```