ImageMagick.MagickImage.NativeMagickImage.LocalContrast C# (CSharp) Метод

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

public LocalContrast ( double radius, double strength ) : void
radius double
strength double
Результат void
      public void LocalContrast(double radius, double strength)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_LocalContrast(Instance, radius, strength, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_LocalContrast(Instance, radius, strength, out exception);
        #endif
        CheckException(exception, result);
        Instance = result;
      }
      public void Magnify()
MagickImage.NativeMagickImage