ImageMagick.MagickScript.ExecuteStatistic C# (CSharp) Method

ExecuteStatistic() private method

private ExecuteStatistic ( XmlElement element, MagickImage image ) : void
element XmlElement
image MagickImage
return void
    private void ExecuteStatistic(XmlElement element, MagickImage image)
    {
      StatisticType type_ = Variables.GetValue<StatisticType>(element, "type");
      Int32 width_ = Variables.GetValue<Int32>(element, "width");
      Int32 height_ = Variables.GetValue<Int32>(element, "height");
      image.Statistic(type_, width_, height_);
    }
    private void ExecuteStegano(XmlElement element, MagickImage image)
MagickScript