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

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

public Merge ( MagickImage image, LayerMethod method ) : IntPtr
image MagickImage
method LayerMethod
Результат System.IntPtr
      public IntPtr Merge(MagickImage image, LayerMethod method)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImageCollection_Merge(MagickImage.GetInstance(image), (UIntPtr)method, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImageCollection_Merge(MagickImage.GetInstance(image), (UIntPtr)method, 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 Montage(MagickImage image, MontageSettings settings)