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

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

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