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

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

public Grayscale ( PixelIntensityMethod method ) : void
method PixelIntensityMethod
Результат void
      public void Grayscale(PixelIntensityMethod method)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.MagickImage_Grayscale(Instance, (UIntPtr)method, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.MagickImage_Grayscale(Instance, (UIntPtr)method, out exception);
        #endif
        CheckException(exception);
      }
      public void HaldClut(MagickImage image)
MagickImage.NativeMagickImage