当前位置: 首页>>代码示例>>C#>>正文


C# MagickImageCollection.Map方法代码示例

本文整理汇总了C#中ImageMagick.MagickImageCollection.Map方法的典型用法代码示例。如果您正苦于以下问题:C# MagickImageCollection.Map方法的具体用法?C# MagickImageCollection.Map怎么用?C# MagickImageCollection.Map使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ImageMagick.MagickImageCollection的用法示例。


在下文中一共展示了MagickImageCollection.Map方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Test_Map

    public void Test_Map()
    {
      using (MagickImageCollection colors = new MagickImageCollection())
      {
        colors.Add(new MagickImage(MagickColors.Red, 1, 1));
        colors.Add(new MagickImage(MagickColors.Green, 1, 1));

        using (MagickImage remapImage = colors.AppendHorizontally())
        {
          using (MagickImageCollection collection = new MagickImageCollection())
          {
            ExceptionAssert.Throws<InvalidOperationException>(delegate ()
            {
              collection.Map(null);
            });

            ExceptionAssert.Throws<InvalidOperationException>(delegate ()
            {
              collection.Map(remapImage);
            });

            collection.Read(Files.RoseSparkleGIF);

            ExceptionAssert.Throws<ArgumentNullException>(delegate ()
            {
              collection.Map(null);
            });

            QuantizeSettings settings = new QuantizeSettings();
            settings.DitherMethod = DitherMethod.FloydSteinberg;

            collection.Map(remapImage, settings);

            ColorAssert.AreEqual(MagickColors.Red, collection[0], 60, 17);
            ColorAssert.AreEqual(MagickColors.Green, collection[0], 37, 24);

            ColorAssert.AreEqual(MagickColors.Red, collection[1], 58, 30);
            ColorAssert.AreEqual(MagickColors.Green, collection[1], 36, 26);

            ColorAssert.AreEqual(MagickColors.Red, collection[2], 60, 40);
            ColorAssert.AreEqual(MagickColors.Green, collection[2], 17, 21);
          }
        }
      }
    }
开发者ID:dlemstra,项目名称:Magick.NET,代码行数:45,代码来源:MagickImageCollectionTests.cs

示例2: ExecuteMap

 private MagickImage ExecuteMap(XmlElement element, MagickImageCollection collection)
 {
   Hashtable arguments = new Hashtable();
   foreach (XmlElement elem in element.SelectNodes("*"))
   {
     arguments[elem.Name] = CreateQuantizeSettings(elem);
   }
   if (arguments.Count == 0)
     {
       collection.Map();
       return null;
     }
   else if (OnlyContains(arguments, "settings"))
     {
       collection.Map((QuantizeSettings)arguments["settings"]);
       return null;
     }
   else
     throw new ArgumentException("Invalid argument combination for 'map', allowed combinations are: [] [settings]");
 }
开发者ID:levesque,项目名称:Magick.NET,代码行数:20,代码来源:MagickImageCollection.cs


注:本文中的ImageMagick.MagickImageCollection.Map方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。