--- 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} ```