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

OrderedDither() public method

public OrderedDither ( string thresholdMap, Channels channels ) : void
thresholdMap string
channels Channels
return void
      public void OrderedDither(string thresholdMap, Channels channels)
      {
        using (INativeInstance thresholdMapNative = UTF8Marshaler.CreateInstance(thresholdMap))
        {
          IntPtr exception = IntPtr.Zero;
          #if ANYCPU
          if (NativeLibrary.Is64Bit)
          #endif
          #if WIN64 || ANYCPU
          NativeMethods.X64.MagickImage_OrderedDither(Instance, thresholdMapNative.Instance, (UIntPtr)channels, out exception);
          #endif
          #if ANYCPU
          else
          #endif
          #if !WIN64 || ANYCPU
          NativeMethods.X86.MagickImage_OrderedDither(Instance, thresholdMapNative.Instance, (UIntPtr)channels, out exception);
          #endif
          CheckException(exception);
        }
      }
      public void Perceptible(double epsilon, Channels channels)
MagickImage.NativeMagickImage