MadelineProtoDocs/docs/API_docs/constructors/documentAttributeImageSize.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

46 lines
918 B
Markdown

---
title: documentAttributeImageSize
description: Document attribute image size
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: documentAttributeImageSize
[Back to constructors index](index.md)
Document attribute image size
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|w|[int](../types/int.md) | Optional|Width|
|h|[int](../types/int.md) | Optional|Height|
### Type: [DocumentAttribute](../types/DocumentAttribute.md)
### Example:
```php
$documentAttributeImageSize = ['_' => 'documentAttributeImageSize', 'w' => int, 'h' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "documentAttributeImageSize", "w": int, "h": int}
```
Or, if you're into Lua:
```lua
documentAttributeImageSize={_='documentAttributeImageSize', w=int, h=int}
```