Код: Выделить всё
public static async Task GetThumbnailAndImage(InputFileChangeEventArgs e)
{
var file = e.File;
var imageTmp = await file.RequestImageFileAsync("jpg", 200, 200);
return image = await UploadMedia(imageTmp);
}
public static async Task UploadMedia(IBrowserFile file)
{
byte[] bytes = new byte[file.Size];
var stream = file.OpenReadStream(int.MaxValue);
await stream.ReadAsync(bytes);
return Convert.ToBase64String(bytes);
}

Я ожидаю левое изображение, но получаю правильное. Кто-нибудь знает что может быть причиной этой проблемы?
Наилучшее
Подробнее здесь: https://stackoverflow.com/questions/707 ... lete-image
Мобильная версия