mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-21 08:50:17 +00:00
35 lines
No EOL
940 B
C#
35 lines
No EOL
940 B
C#
using Avalonia.Data.Converters;
|
|
using Avalonia.Media;
|
|
using Avalonia.Media.Imaging;
|
|
using System;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
|
|
namespace Ryujinx.Ava.Ui.Controls
|
|
{
|
|
internal class BitmapArrayValueConverter : IValueConverter
|
|
{
|
|
public static BitmapArrayValueConverter Instance = new();
|
|
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
if (value == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
if (value is byte[] buffer && targetType == typeof(IImage))
|
|
{
|
|
MemoryStream mem = new(buffer);
|
|
return new Bitmap(mem);
|
|
}
|
|
|
|
throw new NotSupportedException();
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
throw new NotSupportedException();
|
|
}
|
|
}
|
|
} |