зеркало из https://github.com/DeGsoft/maui-linux.git
72 строки
2.1 KiB
C#
72 строки
2.1 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Windows.Storage.Streams;
|
|
using global::Windows.UI.Xaml.Controls;
|
|
using global::Windows.UI.Xaml.Media.Imaging;
|
|
using System.Maui.Internals;
|
|
|
|
namespace System.Maui.Platform.UWP
|
|
{
|
|
public sealed class UriImageSourceHandler : IImageSourceHandler, IIconElementHandler
|
|
{
|
|
public Task<IconElement> LoadIconElementAsync(ImageSource imagesource, CancellationToken cancellationToken = default)
|
|
{
|
|
var imageLoader = imagesource as UriImageSource;
|
|
|
|
if (imageLoader?.Uri == null)
|
|
return null;
|
|
|
|
IconElement image = new BitmapIcon { UriSource = imageLoader?.Uri };
|
|
|
|
return Task.FromResult(image);
|
|
}
|
|
|
|
public Task<Microsoft.UI.Xaml.Controls.IconSource> LoadIconSourceAsync(ImageSource imagesource, CancellationToken cancellationToken = default)
|
|
{
|
|
var imageLoader = imagesource as UriImageSource;
|
|
|
|
if (imageLoader?.Uri == null)
|
|
return null;
|
|
|
|
Microsoft.UI.Xaml.Controls.IconSource image = new Microsoft.UI.Xaml.Controls.BitmapIconSource { UriSource = imageLoader?.Uri };
|
|
|
|
return Task.FromResult(image);
|
|
}
|
|
|
|
public async Task<global::Windows.UI.Xaml.Media.ImageSource> LoadImageAsync(ImageSource imagesource, CancellationToken cancellationToken = new CancellationToken())
|
|
{
|
|
var imageLoader = imagesource as UriImageSource;
|
|
|
|
if (imageLoader?.Uri == null)
|
|
return null;
|
|
|
|
Stream streamImage = await imageLoader.GetStreamAsync(cancellationToken);
|
|
|
|
if (streamImage == null || !streamImage.CanRead)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
using (IRandomAccessStream stream = streamImage.AsRandomAccessStream())
|
|
{
|
|
try
|
|
{
|
|
var image = new BitmapImage();
|
|
await image.SetSourceAsync(stream);
|
|
return image;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Log.Warning("Image Loading", $"{nameof(UriImageSourceHandler)} could not load {imageLoader.Uri}: {ex}");
|
|
|
|
// According to https://msdn.microsoft.com/library/windows/apps/jj191522
|
|
// this can happen if the image data is bad or the app is close to its
|
|
// memory limit
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |