Ejemplo n.º 1
0
 // General rasterop
 public static int pixRasterop(this Pix pixd, int dx, int dy, int dw, int dh, FlagsForRasterOps op, Pix pixs, int sx, int sy)
 {
     return(Native.DllImports.pixRasterop((HandleRef)pixd, dx, dy, dw, dh, (int)op, (HandleRef)pixs, sx, sy));
 }
Ejemplo n.º 2
0
 // Full image rasterop with no translation
 public static int pixRasteropFullImage(this Pix pixd, Pix pixs, FlagsForRasterOps op)
 {
     throw new NotImplementedException();
 }