ImageMagick.DrawingWand.NativeDrawingWand.Composite C# (CSharp) Метод

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

public Composite ( double x, double y, double width, double height, CompositeOperator compositeOperator, MagickImage image ) : void
x double
y double
width double
height double
compositeOperator CompositeOperator
image MagickImage
Результат void
      public void Composite(double x, double y, double width, double height, CompositeOperator compositeOperator, MagickImage image)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DrawingWand_Composite(Instance, x, y, width, height, (UIntPtr)compositeOperator, MagickImage.GetInstance(image), out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DrawingWand_Composite(Instance, x, y, width, height, (UIntPtr)compositeOperator, MagickImage.GetInstance(image), out exception);
        #endif
        CheckException(exception);
      }
      public void Density(string value)