ImageMagick.QuantizeSettings.NativeQuantizeSettings.SetDitherMethod C# (CSharp) Method

SetDitherMethod() public method

public SetDitherMethod ( DitherMethod value ) : void
value DitherMethod
return void
      public void SetDitherMethod(DitherMethod value)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.QuantizeSettings_SetDitherMethod(Instance, (UIntPtr)value);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.QuantizeSettings_SetDitherMethod(Instance, (UIntPtr)value);
        #endif
      }
      public void SetMeasureErrors(bool value)