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

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

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