Example #1
0
 public override void DrawImage(GraphicsHandler graphics, RectangleF source, RectangleF destination)
 {
     CopyTo(bmp, Rectangle.Truncate(source));
     bmp.DrawImage(graphics, source, destination);
 }
 public override void DrawImage(GraphicsHandler graphics, Rectangle source, Rectangle destination)
 {
     CopyTo(bmp, source);
     bmp.DrawImage(graphics, source, destination);
 }