ImageMagick.PixelCollection.NativePixelCollection.NativePixelCollection C# (CSharp) Метод

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

public NativePixelCollection ( MagickImage image ) : System
image MagickImage
Результат System
      public NativePixelCollection(MagickImage image)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        Instance = NativeMethods.X64.PixelCollection_Create(MagickImage.GetInstance(image), out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        Instance = NativeMethods.X86.PixelCollection_Create(MagickImage.GetInstance(image), out exception);
        #endif
        CheckException(exception, Instance);
        if (Instance == IntPtr.Zero)
          throw new InvalidOperationException();
      }
      protected override string TypeName