ImageMagick.MagickScript.ExecuteMorph C# (CSharp) Method

ExecuteMorph() private method

private ExecuteMorph ( XmlElement element, MagickImageCollection collection ) : MagickImage
element XmlElement
collection MagickImageCollection
return MagickImage
    private MagickImage ExecuteMorph(XmlElement element, MagickImageCollection collection)
    {
      Int32 frames_ = Variables.GetValue<Int32>(element, "frames");
      collection.Morph(frames_);
      return null;
    }
    private static MagickImage ExecuteOptimize(MagickImageCollection collection)
MagickScript