ImageMagick.MagickImage.NativeMagickImage.CloneArea C# (CSharp) Метод

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

public CloneArea ( int width, int height ) : IntPtr
width int
height int
Результат System.IntPtr
      public IntPtr CloneArea(int width, int height)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_CloneArea(Instance, (UIntPtr)width, (UIntPtr)height, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_CloneArea(Instance, (UIntPtr)width, (UIntPtr)height, out exception);
        #endif
        CheckException(exception, result);
        return result;
      }
      public void Clut(MagickImage image, PixelInterpolateMethod method, Channels channels)
MagickImage.NativeMagickImage