Ejemplo n.º 1
0
 public Distort(DistortMethod method, string arguments)
 {
     Method    = method;
     Arguments = arguments;
 }
Ejemplo n.º 2
0
 public void Distort(DistortMethod method, bool bestfit, double[] arguments, int length)
 {
   IntPtr exception = IntPtr.Zero;
   IntPtr result;
   #if ANYCPU
   if (NativeLibrary.Is64Bit)
   #endif
   #if WIN64 || ANYCPU
   result = NativeMethods.X64.MagickImage_Distort(Instance, (UIntPtr)method, bestfit, arguments, (UIntPtr)length, out exception);
   #endif
   #if ANYCPU
   else
   #endif
   #if !WIN64 || ANYCPU
   result = NativeMethods.X86.MagickImage_Distort(Instance, (UIntPtr)method, bestfit, arguments, (UIntPtr)length, out exception);
   #endif
   CheckException(exception, result);
   Instance = result;
 }