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

Separate() public method

public Separate ( Channels channels ) : IntPtr
channels Channels
return IntPtr
      public IntPtr Separate(Channels channels)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_Separate(Instance, (UIntPtr)channels, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_Separate(Instance, (UIntPtr)channels, out exception);
        #endif
        CheckException(exception, result);
        return result;
      }
      public void SepiaTone(double threshold)
MagickImage.NativeMagickImage