예제 #1
0
파일: G.cs 프로젝트: uwx/MadSharp
        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);
        }
예제 #2
0
파일: G.cs 프로젝트: uwx/MadSharp
        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);
        }
예제 #3
0
파일: G.cs 프로젝트: uwx/MadSharp
 public static void DrawImage(Image bggo, int p1, int i429, int p3, int i, object o)
 {
     ////throw new NotImplementedException();
 }