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

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

public Resample ( double resolutionX, double resolutionY ) : void
resolutionX double
resolutionY double
Результат void
      public void Resample(double resolutionX, double resolutionY)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_Resample(Instance, resolutionX, resolutionY, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_Resample(Instance, resolutionX, resolutionY, out exception);
        #endif
        CheckException(exception, result);
        Instance = result;
      }
      public void Resize(string geometry)
MagickImage.NativeMagickImage