bool NoException(MagickSharp.ImageMagick.MagickWand wand)
 {
     return MagickSharp.ImageMagick.MagickGetExceptionType(wand) ==
         MagickSharp.ImageMagick.ExceptionType.UndefinedException;
 }
 void AssertNoErrors(MagickSharp.ImageMagick.MagickWand wand)
 {
     MagickSharp.ImageMagick.ExceptionType type;
     Assert.IsTrue(this.NoException(wand),
         MagickSharp.ImageMagick.MagickGetException(wand, out type));
 }