File: IImageLoadingService.cs
Web Access
Project: src\src\Graphics\src\Graphics\Graphics.csproj (Microsoft.Maui.Graphics)
using System.IO;
 
namespace Microsoft.Maui.Graphics
{
	public interface IImageLoadingService
	{
		IImage FromStream(Stream stream, ImageFormat format = ImageFormat.Png);
	}
}