| File: SkiaImageLoadingService.cs | Web Access | 
| Project: src\src\Graphics\src\Graphics.Skia\Graphics.Skia.csproj (Microsoft.Maui.Graphics.Skia) | 
| using System.IO; namespace Microsoft.Maui.Graphics.Skia { public class SkiaImageLoadingService : IImageLoadingService { public IImage FromStream(Stream stream, ImageFormat formatHint = ImageFormat.Png) { return SkiaImage.FromStream(stream, formatHint); } } } |