Beispiel #1
0
 public void DrawImage(GraphicsHandler graphics, float x, float y)
 {
     graphics.Control.DrawImage(Control, x, y);
 }
Beispiel #2
0
 public void DrawImage(GraphicsHandler graphics, float x, float y, float width, float height)
 {
     graphics.Control.DrawImage(Control, x, y, width, height);
 }
Beispiel #3
0
 public void DrawImage(GraphicsHandler graphics, RectangleF source, RectangleF destination)
 {
     graphics.Control.DrawImage(Control, destination.ToSD(), source.ToSD(), SD.GraphicsUnit.Pixel);
 }
Beispiel #4
0
 public void Create(int width, int height, Graphics graphics)
 {
     Control = new SD.Bitmap(width, height, GraphicsHandler.GetControl(graphics));
 }
Beispiel #5
0
        public void DrawImage(GraphicsHandler graphics, float x, float y, float width, float height)
        {
            var image = GetImageWithSize((int)Math.Max(width, height));

            graphics.Control.DrawImage(image, x, y, width, height);
        }
Beispiel #6
0
        public void DrawImage(GraphicsHandler graphics, float x, float y)
        {
            var image = GetLargestIcon().ToBitmap();

            graphics.Control.DrawImage(image, x, y);
        }
Beispiel #7
0
        public void DrawImage(GraphicsHandler graphics, RectangleF source, RectangleF destination)
        {
            var image = GetImageWithSize((int)Math.Max(destination.Width, destination.Height));

            graphics.Control.DrawImage(image, destination.ToSD(), source.ToSD(), SD.GraphicsUnit.Pixel);
        }