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

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

public AdaptiveResize ( int width, int height ) : void
width int
height int
Результат void
      public void AdaptiveResize(int width, int height)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_AdaptiveResize(Instance, (UIntPtr)width, (UIntPtr)height, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_AdaptiveResize(Instance, (UIntPtr)width, (UIntPtr)height, out exception);
        #endif
        CheckException(exception, result);
        Instance = result;
      }
      public void AdaptiveSharpen(double radius, double sigma, Channels channels)
MagickImage.NativeMagickImage