mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-11-26 20:35:03 +01:00
36 lines
745 B
Markdown
36 lines
745 B
Markdown
|
---
|
||
|
title: photoStrippedSize
|
||
|
description: Just the image's content
|
||
|
nav_exclude: true
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: photoStrippedSize
|
||
|
[Back to constructors index](index.html)
|
||
|
|
||
|
|
||
|
|
||
|
Just the image's content
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|type|[string](../types/string.html) | Yes|Thumbnail type|
|
||
|
|bytes|[bytes](../types/bytes.html) | Yes|Thumbnail data|
|
||
|
|inflated|[bytes](../types/bytes.html) | Yes|JPG image data|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [PhotoSize](../types/PhotoSize.html)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$photoStrippedSize = ['_' => 'photoStrippedSize', 'type' => 'string', 'bytes' => 'bytes'];
|
||
|
```
|
||
|
|
||
|
|
||
|
|
||
|
|