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

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

public Spread ( PixelInterpolateMethod method, double radius ) : void
method PixelInterpolateMethod
radius double
Результат void
      public void Spread(PixelInterpolateMethod method, double radius)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_Spread(Instance, (UIntPtr)method, radius, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_Spread(Instance, (UIntPtr)method, radius, out exception);
        #endif
        CheckException(exception, result);
        Instance = result;
      }
      public void Statistic(StatisticType type, int width, int height)
MagickImage.NativeMagickImage