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

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

public SetArea ( int x, int y, int width, int height, Byte values, int length ) : void
x int
y int
width int
height int
values System.Byte
length int
Результат void
      public void SetArea(int x, int y, int width, int height, QuantumType[] values, int length)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.PixelCollection_SetArea(Instance, (UIntPtr)x, (UIntPtr)y, (UIntPtr)width, (UIntPtr)height, values, (UIntPtr)length, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.PixelCollection_SetArea(Instance, (UIntPtr)x, (UIntPtr)y, (UIntPtr)width, (UIntPtr)height, values, (UIntPtr)length, out exception);
        #endif
        CheckException(exception);
      }
      public IntPtr ToByteArray(int x, int y, int width, int height, string mapping)