3 references to DrawImage
System.Drawing.Common (3)
System\Drawing\Graphics.cs (3)
2006public void DrawImage(Image image, RectangleF rect) => DrawImage(image, rect.X, rect.Y, rect.Width, rect.Height);
2020public void DrawImage(Image image, Rectangle rect) => DrawImage(image, (float)rect.X, rect.Y, rect.Width, rect.Height);
2022public void DrawImage(Image image, int x, int y, int width, int height) => DrawImage(image, (float)x, y, width, height);