ImageMagick.MagickImage.NativeMagickImage.Implode C# (CSharp) Method

Implode() public method

public Implode ( double amount, PixelInterpolateMethod method ) : void
amount double
method PixelInterpolateMethod
return void
      public void Implode(double amount, PixelInterpolateMethod method)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_Implode(Instance, amount, (UIntPtr)method, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_Implode(Instance, amount, (UIntPtr)method, out exception);
        #endif
        CheckException(exception, result);
        Instance = result;
      }
      public void Kuwahara(double radius, double sigma)
MagickImage.NativeMagickImage