public void Test_Reverse()
    {
      using (MagickImageCollection collection = new MagickImageCollection(Files.RoseSparkleGIF))
      {
        MagickImage first = collection.First();
        collection.Reverse();

        MagickImage last = collection.Last();
        Assert.IsTrue(last == first);
      }
    }