ImageMagick.DrawingWand.NativeDrawingWand.PushGraphicContext C# (CSharp) Method

PushGraphicContext() public method

public PushGraphicContext ( ) : void
return void
      public void PushGraphicContext()
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DrawingWand_PushGraphicContext(Instance, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DrawingWand_PushGraphicContext(Instance, out exception);
        #endif
        CheckException(exception);
      }
      public void PushPattern(string id, double x, double y, double width, double height)