本文整理汇总了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");
}
}
示例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);
}
}
示例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);
}
}
示例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");
}
}
示例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);
}
}