Method: photos.uploadProfilePhoto
Updates current user profile photo.
Parameters:
Name | Type | Description | Required |
---|---|---|---|
fallback | Bool | Optional | |
file | File path or InputFile | File saved in parts by means of upload.saveFilePart method | Optional |
video | File path or InputFile | Animated profile picture video | Optional |
video_start_ts | double | Floating point UNIX timestamp in seconds, indicating the frame of the video that should be used as static preview. | Optional |
video_emoji_markup | VideoSize | Optional |
Return type: photos.Photo
Can bots use this method: NO
MadelineProto Example (now async for huge speed and parallelism!):
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
// PHP 8+ syntax, use an array on PHP 7.
$photos_Photo = $MadelineProto->photos->uploadProfilePhoto(fallback: Bool, file: InputFile, video: InputFile, video_start_ts: double, video_emoji_markup: VideoSize, );