File: ImageLoadingServiceExtensions.cs | Web Access |
Project: src\src\Graphics\src\Graphics\Graphics.csproj (Microsoft.Maui.Graphics) |
using System.IO; namespace Microsoft.Maui.Graphics { public static class ImageLoadingServiceExtensions { public static IImage FromBytes(this IImageLoadingService target, byte[] bytes) { using (var stream = new MemoryStream(bytes)) { return target.FromStream(stream); } } } } |