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

Fx() public method

public Fx ( string expression, Channels channels ) : void
expression string
channels Channels
return void
      public void Fx(string expression, Channels channels)
      {
        using (INativeInstance expressionNative = UTF8Marshaler.CreateInstance(expression))
        {
          IntPtr exception = IntPtr.Zero;
          IntPtr result;
          #if ANYCPU
          if (NativeLibrary.Is64Bit)
          #endif
          #if WIN64 || ANYCPU
          result = NativeMethods.X64.MagickImage_Fx(Instance, expressionNative.Instance, (UIntPtr)channels, out exception);
          #endif
          #if ANYCPU
          else
          #endif
          #if !WIN64 || ANYCPU
          result = NativeMethods.X86.MagickImage_Fx(Instance, expressionNative.Instance, (UIntPtr)channels, out exception);
          #endif
          CheckException(exception, result);
          Instance = result;
        }
      }
      public void GammaCorrect(double gamma, Channels channels)
MagickImage.NativeMagickImage