mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 20:07:50 +01:00
21 lines
525 B
Markdown
21 lines
525 B
Markdown
|
## Constructor: photoSize
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|type|[string](../types/string.md) | Required|
|
||
|
|location|[FileLocation](../types/FileLocation.md) | Required|
|
||
|
|w|[int](../types/int.md) | Required|
|
||
|
|h|[int](../types/int.md) | Required|
|
||
|
|size|[int](../types/int.md) | Required|
|
||
|
|
||
|
|
||
|
### Type: [PhotoSize](../types/PhotoSize.md)
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
|
||
|
```
|
||
|
$photoSize = ['type' => string, 'location' => FileLocation, 'w' => int, 'h' => int, 'size' => int, ];
|
||
|
```
|