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

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

public Montage ( MagickImage image, MontageSettings settings ) : IntPtr
image MagickImage
settings MontageSettings
Результат System.IntPtr
      public IntPtr Montage(MagickImage image, MontageSettings settings)
      {
        using (INativeInstance settingsNative = MontageSettings.CreateInstance(settings))
        {
          IntPtr exception = IntPtr.Zero;
          IntPtr result;
          #if ANYCPU
          if (NativeLibrary.Is64Bit)
          #endif
          #if WIN64 || ANYCPU
          result = NativeMethods.X64.MagickImageCollection_Montage(MagickImage.GetInstance(image), settingsNative.Instance, out exception);
          #endif
          #if ANYCPU
          else
          #endif
          #if !WIN64 || ANYCPU
          result = NativeMethods.X86.MagickImageCollection_Montage(MagickImage.GetInstance(image), settingsNative.Instance, 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 Morph(MagickImage image, int frames)