ImageMagick.MagickImageCollection.NativeMagickImageCollection.Combine C# (CSharp) Метод

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

public Combine ( MagickImage image, Channels channels ) : IntPtr
image MagickImage
channels Channels
Результат System.IntPtr
      public IntPtr Combine(MagickImage image, Channels channels)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImageCollection_Combine(MagickImage.GetInstance(image), (UIntPtr)channels, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImageCollection_Combine(MagickImage.GetInstance(image), (UIntPtr)channels, out exception);
        #endif
        MagickException magickException = MagickExceptionHelper.Create(exception);
        if (MagickExceptionHelper.IsError(magickException))
        {
          if (result != IntPtr.Zero)
            Dispose(result);
          throw magickException;
        }
        RaiseWarning(magickException);
        return result;
      }
      public IntPtr Deconstruct(MagickImage image)