MadelineProtoDocs/old_docs/API_docs_v38/constructors/inputPhotoCrop.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

966 B

title description image
inputPhotoCrop inputPhotoCrop attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputPhotoCrop

Back to constructors index

Attributes:

Name Type Required
crop_left double Yes
crop_top double Yes
crop_width double Yes

Type: InputPhotoCrop

Example:

$inputPhotoCrop = ['_' => 'inputPhotoCrop', 'crop_left' => double, 'crop_top' => double, 'crop_width' => double];

PWRTelegram json-encoded version:

{"_": "inputPhotoCrop", "crop_left": double, "crop_top": double, "crop_width": double}

Or, if you're into Lua:

inputPhotoCrop={_='inputPhotoCrop', crop_left=double, crop_top=double, crop_width=double}