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


C# MagickImage.GetColorProfile方法代码示例

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


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

示例1: Test_ICM

    public void Test_ICM()
    {
      using (MagickImage image = new MagickImage(Files.SnakewarePNG))
      {
        ColorProfile profile = image.GetColorProfile();
        Assert.IsNull(profile);

        image.AddProfile(new ImageProfile("icm", ColorProfile.SRGB.ToByteArray()));
        TestProfile(image.GetColorProfile(), "icm");
      }
    }
开发者ID:levesque,项目名称:Magick.NET,代码行数:11,代码来源:ColorProfileTests.cs

示例2: Test_Remove

    public void Test_Remove()
    {
      using (MagickImage image = new MagickImage(Files.SnakewarePNG))
      {
        ColorProfile profile = image.GetColorProfile();
        Assert.IsNull(profile);

        image.AddProfile(ColorProfile.SRGB);

        Assert.IsNull(image.GetProfile("icm"));

        profile = image.GetColorProfile();
        Assert.IsNotNull(profile);

        image.RemoveProfile(profile.Name);

        profile = image.GetColorProfile();
        Assert.IsNull(profile);
      }
    }
开发者ID:levesque,项目名称:Magick.NET,代码行数:20,代码来源:ColorProfileTests.cs

示例3: Test_Execute_ImageProfile

    public void Test_Execute_ImageProfile()
    {
      MagickScript script = new MagickScript(Files.Scripts.ImageProfile);

      using (MagickImage image = new MagickImage(Files.MagickNETIconPNG))
      {
        ColorProfile colorProfile = image.GetColorProfile();
        Assert.IsNull(colorProfile);

        script.Execute(image);

        colorProfile = image.GetColorProfile();

        Assert.IsNotNull(colorProfile);
        Assert.AreEqual(colorProfile.ToByteArray().Length, ColorProfile.SRGB.ToByteArray().Length);
      }
    }
开发者ID:levesque,项目名称:Magick.NET,代码行数:17,代码来源:MagickScriptTests.cs

示例4: Test_WithImage

    public void Test_WithImage()
    {
      using (MagickImage image = new MagickImage())
      {
        image.AddProfile(ColorProfile.USWebCoatedSWOP);
        ExceptionAssert.Throws<MagickCacheErrorException>(delegate ()
        {
          image.ColorSpace = ColorSpace.CMYK;
        });
        image.Read(Files.SnakewarePNG);

        ColorProfile profile = image.GetColorProfile();
        Assert.IsNull(profile);

        image.AddProfile(ColorProfile.SRGB);
        TestProfile(image.GetColorProfile(), "icc");
      }
    }
开发者ID:levesque,项目名称:Magick.NET,代码行数:18,代码来源:ColorProfileTests.cs

示例5: Test_AddProfile

    public void Test_AddProfile()
    {
      using (MagickImage image = new MagickImage(Files.SnakewarePNG))
      {
        ColorProfile profile = image.GetColorProfile();
        Assert.IsNull(profile);

        image.AddProfile(ColorProfile.SRGB);
        profile = image.GetColorProfile();
        Assert.IsNotNull(profile);
        Assert.AreEqual(3144, profile.ToByteArray().Length);

        image.AddProfile(ColorProfile.AppleRGB, false);
        profile = image.GetColorProfile();
        Assert.IsNotNull(profile);
        Assert.AreEqual(3144, profile.ToByteArray().Length);

        image.AddProfile(ColorProfile.AppleRGB);
        profile = image.GetColorProfile();
        Assert.IsNotNull(profile);
        Assert.AreEqual(552, profile.ToByteArray().Length);
      }
    }
开发者ID:marinehero,项目名称:Magick.NET,代码行数:23,代码来源:MagickImageTests.cs


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