mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-03 10:08:28 +01:00
995 B
995 B
title | description | nav_exclude | image |
---|---|---|---|
photoCachedSize | Description of an image and its content. | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: photoCachedSize_23
Description of an image and its content.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
type | string | Yes | Thumbnail type |
location | FileLocation | Yes | |
w | int | Yes | Image width |
h | int | Yes | Image height |
bytes | bytes | Yes | Binary data, file content |
Type: PhotoSize
Example:
$photoCachedSize_23 = ['_' => 'photoCachedSize', 'type' => 'string', 'location' => FileLocation, 'w' => int, 'h' => int, 'bytes' => 'bytes'];