mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-03 10:08:28 +01:00
1.0 KiB
1.0 KiB
title | description | nav_exclude | image |
---|---|---|---|
photoSizeProgressive | Progressively encoded photosize | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: photoSizeProgressive
Progressively encoded photosize
Attributes:
Name | Type | Required | Description |
---|---|---|---|
type | string | Yes | Photosize type » |
w | int | Yes | Photo width |
h | int | Yes | Photo height |
sizes | Array of int | Yes | Sizes of progressive JPEG file prefixes, which can be used to preliminarily show the image. |
Type: PhotoSize
Example:
$photoSizeProgressive = ['_' => 'photoSizeProgressive', 'type' => 'string', 'w' => int, 'h' => int, 'sizes' => [int, int]];