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

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

public HasChannel ( PixelChannel channel ) : bool
channel PixelChannel
Результат bool
      public bool HasChannel(PixelChannel channel)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        return NativeMethods.X64.MagickImage_HasChannel(Instance, (UIntPtr)channel);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        return NativeMethods.X86.MagickImage_HasChannel(Instance, (UIntPtr)channel);
        #endif
      }
      public bool HasProfile(string name)
MagickImage.NativeMagickImage