3 implementations of DrawImage
Microsoft.Maui.Graphics (3)
AbstractCanvas.cs (1)
232
public abstract void
DrawImage
(IImage image, float x, float y, float width, float height);
PictureCanvas.cs (1)
274
public void
DrawImage
(IImage image, float x, float y, float width, float height)
ScalingCanvas.cs (1)
129
public void
DrawImage
(IImage image, float x, float y, float width, float height)
5 references to DrawImage
Microsoft.Maui.Graphics (2)
PictureCanvas.cs (1)
276
_commands.Add(canvas => canvas.
DrawImage
(image, x, y, width, height));
ScalingCanvas.cs (1)
131
_canvas.
DrawImage
(image, x * _scaleX, y * _scaleY, width * _scaleX, height * _scaleY);
Microsoft.Maui.Graphics.Skia (2)
SkiaImage.cs (2)
94
context.Canvas.
DrawImage
(this, x, y, w, h);
149
canvas.
DrawImage
(this, dirtyRect.Left, dirtyRect.Top, MathF.Round(dirtyRect.Width), MathF.Round(dirtyRect.Height));
Microsoft.Maui.Graphics.Win2D.WinUI.Desktop (1)
src\Graphics\src\Graphics\Platforms\Windows\PlatformImage.cs (1)
140
canvas.
DrawImage
(this, dirtyRect.Left, dirtyRect.Top, Math.Abs(dirtyRect.Width), Math.Abs(dirtyRect.Height));