MadelineProtoDocs/old_docs/API_docs_v10/constructors/inputPhotoCrop.md
2020-06-16 17:50:25 +02:00

39 lines
808 B
Markdown

---
title: inputPhotoCrop
description: inputPhotoCrop attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputPhotoCrop
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|crop\_left|[double](../types/double.md) | Yes|
|crop\_top|[double](../types/double.md) | Yes|
|crop\_width|[double](../types/double.md) | Yes|
### Type: [InputPhotoCrop](../types/InputPhotoCrop.md)
### Example:
```php
$inputPhotoCrop = ['_' => 'inputPhotoCrop', 'crop_left' => double, 'crop_top' => double, 'crop_width' => double];
```
Or, if you're into Lua:
```lua
inputPhotoCrop={_='inputPhotoCrop', crop_left=double, crop_top=double, crop_width=double}
```