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

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

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