ImageMagick.MagickImage.NativeMagickImage.Distort C# (CSharp) Метод

Distort() публичный Метод

public Distort ( DistortMethod method, bool bestfit, double arguments, int length ) : void
method DistortMethod
bestfit bool
arguments double
length int
Результат void
      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;
      }
      public void Edge(double radius)
MagickImage.NativeMagickImage