MadelineProtoDocs/old_docs/API_docs_v82/constructors/documentAttributeImageSize.md

40 lines
791 B
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
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];
```
Or, if you're into Lua:
```lua
documentAttributeImageSize={_='documentAttributeImageSize', w=int, h=int}
```