@@ -42,7 +42,7 @@ public class ColorProfileConverterTests(ITestOutputHelper testOutputHelper)
4242 [ InlineData ( TestIccProfiles . RommRgb , TestIccProfiles . StandardRgbV4 ) ] // CMYK -> LAB -> CMYK (different bit depth v2 LUTs, 16-bit vs 8-bit)
4343 [ InlineData ( TestIccProfiles . Fogra39 , TestIccProfiles . StandardRgbV2 , 0.0005 ) ] // CMYK -> LAB -> XYZ -> RGB (different LUT tags, A2B vs TRC) --- tolerance slightly higher due to difference in inverse curve implementation
4444 [ InlineData ( TestIccProfiles . StandardRgbV2 , TestIccProfiles . Fogra39 ) ] // RGB -> XYZ -> LAB -> CMYK (different LUT tags, TRC vs A2B)
45- public void CanConvertIccProfiles ( string sourceProfile , string targetProfile , double tolerance = 0.00005 )
45+ public void CanConvertIccProfiles ( string sourceProfile , string targetProfile , double tolerance = 0.000005 )
4646 {
4747 List < Vector4 > actual = Inputs . ConvertAll ( input => GetActualTargetValues ( input , sourceProfile , targetProfile ) ) ;
4848 AssertConversion ( sourceProfile , targetProfile , actual , tolerance , testOutputHelper ) ;
@@ -63,7 +63,7 @@ public void CanConvertIccProfiles(string sourceProfile, string targetProfile, do
6363 [ InlineData ( TestIccProfiles . Fogra39 , TestIccProfiles . StandardRgbV2 , 0.0005 ) ] // CMYK -> LAB -> XYZ -> RGB (different LUT tags, A2B vs TRC) --- tolerance slightly higher due to difference in inverse curve implementation
6464 [ InlineData ( TestIccProfiles . StandardRgbV2 , TestIccProfiles . Fogra39 ) ] // RGB -> XYZ -> LAB -> CMYK (different LUT tags, TRC vs A2B)
6565 [ InlineData ( TestIccProfiles . Issue129 , TestIccProfiles . StandardRgbV4 ) ] // CMYK -> LAB -> -> XYZ -> RGB
66- public void CanBulkConvertIccProfiles ( string sourceProfile , string targetProfile , double tolerance = 0.00005 )
66+ public void CanBulkConvertIccProfiles ( string sourceProfile , string targetProfile , double tolerance = 0.000005 )
6767 {
6868 List < Vector4 > actual = GetBulkActualTargetValues ( Inputs , sourceProfile , targetProfile ) ;
6969 AssertConversion ( sourceProfile , targetProfile , actual , tolerance , testOutputHelper ) ;
0 commit comments