ImageMagick.MagickImage.NativeMagickImage.Statistic C# (CSharp) Method

Statistic() public method

public Statistic ( StatisticType type, int width, int height ) : void
type StatisticType
width int
height int
return void
      public void Statistic(StatisticType type, int width, int height)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_Statistic(Instance, (UIntPtr)type, (UIntPtr)width, (UIntPtr)height, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_Statistic(Instance, (UIntPtr)type, (UIntPtr)width, (UIntPtr)height, out exception);
        #endif
        CheckException(exception, result);
        Instance = result;
      }
      public IntPtr Statistics()
MagickImage.NativeMagickImage