Exemple #1
0
        public static void DrawImage(Image image, int x, int y, int wid, int hei)
        {
            if (image == null)
            {
                return;
            }

            D2D.DrawBitmap(image, new RectangleF(x, y, wid, hei), 1.0f,
                           BitmapInterpolationMode.NearestNeighbor);
        }
Exemple #2
0
        public static void DrawImage(Image image, int x, int y)
        {
            if (image == null)
            {
                return;
            }

            D2D.DrawBitmap(image, new RectangleF(x, y, image.GetWidth(null), image.GetHeight(null)), 1.0f,
                           BitmapInterpolationMode.NearestNeighbor);
        }
Exemple #3
0
 public static void DrawImage(Image bggo, int p1, int i429, int p3, int i, object o)
 {
     ////throw new NotImplementedException();
 }