ImageMagick.MagickImage.NativeMagickImage.Flop C# (CSharp) Method

Flop() public method

public Flop ( ) : void
return void
      public void Flop()
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_Flop(Instance, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_Flop(Instance, out exception);
        #endif
        CheckException(exception, result);
        Instance = result;
      }
      public IntPtr FontTypeMetrics(DrawingSettings settings, bool ignoreNewLines)
MagickImage.NativeMagickImage