You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
var bytes = File.ReadAllBytes(IMG_PATH);
using (MemoryStream stream = new(bytes))
{
var service = new Microsoft.Maui.Graphics.Win2D.W2DImageLoadingService();
boardImage = service.FromStream(stream, ImageFormat.Png);
}
I suspect an issue with image loader. I've tried to load different images with exact same result.
Microsoft.Maui.Graphics.Skia.SkiaImageLoadingService loads an image but then GraphicsView is not displaying it for some reason after calling canvas.DrawImage(boardImage, 10, 10, boardImage.Width, boardImage.Height);
net7.0-windows10.0.19041.0
I suspect an issue with image loader. I've tried to load different images with exact same result.
Microsoft.Maui.Graphics.Skia.SkiaImageLoadingService
loads an image but then GraphicsView is not displaying it for some reason after callingcanvas.DrawImage(boardImage, 10, 10, boardImage.Width, boardImage.Height);
Code: https://github.com/Anav0/Counters.Core
The text was updated successfully, but these errors were encountered: