mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
3.8 KiB
77 lines
3.8 KiB
// Copyright (c) Six Labors.
|
|
// Licensed under the Six Labors Split License.
|
|
|
|
using System.Numerics;
|
|
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
|
|
|
|
namespace SixLabors.ImageSharp.Tests.TestDataIcc.Conversion
|
|
{
|
|
public class IccConversionDataTrc
|
|
{
|
|
internal static IccCurveTagDataEntry IdentityCurve = new IccCurveTagDataEntry();
|
|
internal static IccCurveTagDataEntry Gamma2Curve = new IccCurveTagDataEntry(2);
|
|
internal static IccCurveTagDataEntry LutCurve = new IccCurveTagDataEntry(new float[] { 0, 0.7f, 1 });
|
|
|
|
internal static IccParametricCurveTagDataEntry ParamCurve1 = new IccParametricCurveTagDataEntry(new IccParametricCurve(2.2f));
|
|
internal static IccParametricCurveTagDataEntry ParamCurve2 = new IccParametricCurveTagDataEntry(new IccParametricCurve(2.2f, 1.5f, -0.5f));
|
|
internal static IccParametricCurveTagDataEntry ParamCurve3 = new IccParametricCurveTagDataEntry(new IccParametricCurve(2.2f, 1.5f, -0.5f, 0.3f));
|
|
internal static IccParametricCurveTagDataEntry ParamCurve4 = new IccParametricCurveTagDataEntry(new IccParametricCurve(2.4f, 1 / 1.055f, 0.055f / 1.055f, 1 / 12.92f, 0.04045f));
|
|
internal static IccParametricCurveTagDataEntry ParamCurve5 = new IccParametricCurveTagDataEntry(new IccParametricCurve(2.2f, 0.7f, 0.2f, 0.3f, 0.1f, 0.5f, 0.2f));
|
|
|
|
public static object[][] TrcArrayConversionTestData =
|
|
{
|
|
new object[]
|
|
{
|
|
new IccTagDataEntry[] { IdentityCurve, Gamma2Curve, ParamCurve1 },
|
|
false,
|
|
new Vector4(2, 2, 0.5f, 0),
|
|
new Vector4(2, 4, 0.217637628f, 0),
|
|
},
|
|
new object[]
|
|
{
|
|
new IccTagDataEntry[] { IdentityCurve, Gamma2Curve, ParamCurve1 },
|
|
true,
|
|
new Vector4(1, 4, 0.217637628f, 0),
|
|
new Vector4(1, 2, 0.5f, 0),
|
|
},
|
|
};
|
|
|
|
public static object[][] CurveConversionTestData =
|
|
{
|
|
new object[] { IdentityCurve, false, 2, 2 },
|
|
new object[] { Gamma2Curve, false, 2, 4 },
|
|
new object[] { LutCurve, false, 0.1, 0.14 },
|
|
new object[] { LutCurve, false, 0.5, 0.7 },
|
|
new object[] { LutCurve, false, 0.75, 0.85 },
|
|
|
|
new object[] { IdentityCurve, true, 2, 2 },
|
|
new object[] { Gamma2Curve, true, 4, 2 },
|
|
new object[] { LutCurve, true, 0.14, 0.1 },
|
|
new object[] { LutCurve, true, 0.7, 0.5 },
|
|
new object[] { LutCurve, true, 0.85, 0.75 },
|
|
};
|
|
|
|
public static object[][] ParametricCurveConversionTestData =
|
|
{
|
|
new object[] { ParamCurve1, false, 0.5f, 0.217637628f },
|
|
new object[] { ParamCurve2, false, 0.6f, 0.133208528f },
|
|
new object[] { ParamCurve2, false, 0.21f, 0 },
|
|
new object[] { ParamCurve3, false, 0.61f, 0.444446117f },
|
|
new object[] { ParamCurve3, false, 0.22f, 0.3f },
|
|
new object[] { ParamCurve4, false, 0.3f, 0.0732389539f },
|
|
new object[] { ParamCurve4, false, 0.03f, 0.00232198136f },
|
|
new object[] { ParamCurve5, false, 0.2f, 0.593165159f },
|
|
new object[] { ParamCurve5, false, 0.05f, 0.215f },
|
|
|
|
new object[] { ParamCurve1, true, 0.217637628f, 0.5f },
|
|
new object[] { ParamCurve2, true, 0.133208528f, 0.6f },
|
|
new object[] { ParamCurve2, true, 0, 1 / 3f },
|
|
new object[] { ParamCurve3, true, 0.444446117f, 0.61f },
|
|
new object[] { ParamCurve3, true, 0.3f, 1 / 3f },
|
|
new object[] { ParamCurve4, true, 0.0732389539f, 0.3f },
|
|
new object[] { ParamCurve4, true, 0.00232198136f, 0.03f },
|
|
new object[] { ParamCurve5, true, 0.593165159f, 0.2f },
|
|
new object[] { ParamCurve5, true, 0.215f, 0.05f },
|
|
};
|
|
}
|
|
}
|
|
|