Пример #1
0
 public void DrawImage(NativeBmp bmp, int x, int y, int w, int h)
 {
     NativePixelLibInterOp.DrawImage(
         this.nativeCanvasPtr, bmp,
         x, y, w, this.h - h);
 }
Пример #2
0
 public void DrawImage(NativeBmp bmp, int x, int y)
 {
     NativePixelLibInterOp.DrawImage(
         this.nativeCanvasPtr, bmp,
         x, y, bmp.Width, this.h - bmp.Height);
 }