@@ -13,14 +13,14 @@ namespace SixLabors.ImageSharp.Tests.Formats.Tiff.PhotometricInterpretation
1313 [ Trait ( "Format" , "Tiff" ) ]
1414 public class BlackIsZeroTiffColorTests : PhotometricInterpretationTestBase
1515 {
16- private static readonly Rgba32 Gray000 = new Rgba32 ( 0 , 0 , 0 , 255 ) ;
17- private static readonly Rgba32 Gray128 = new Rgba32 ( 128 , 128 , 128 , 255 ) ;
18- private static readonly Rgba32 Gray255 = new Rgba32 ( 255 , 255 , 255 , 255 ) ;
19- private static readonly Rgba32 Gray0 = new Rgba32 ( 0 , 0 , 0 , 255 ) ;
20- private static readonly Rgba32 Gray8 = new Rgba32 ( 136 , 136 , 136 , 255 ) ;
21- private static readonly Rgba32 GrayF = new Rgba32 ( 255 , 255 , 255 , 255 ) ;
22- private static readonly Rgba32 Bit0 = new Rgba32 ( 0 , 0 , 0 , 255 ) ;
23- private static readonly Rgba32 Bit1 = new Rgba32 ( 255 , 255 , 255 , 255 ) ;
16+ private static readonly Rgba32 Gray000 = new ( 0 , 0 , 0 , 255 ) ;
17+ private static readonly Rgba32 Gray128 = new ( 128 , 128 , 128 , 255 ) ;
18+ private static readonly Rgba32 Gray255 = new ( 255 , 255 , 255 , 255 ) ;
19+ private static readonly Rgba32 Gray0 = new ( 0 , 0 , 0 , 255 ) ;
20+ private static readonly Rgba32 Gray8 = new ( 136 , 136 , 136 , 255 ) ;
21+ private static readonly Rgba32 GrayF = new ( 255 , 255 , 255 , 255 ) ;
22+ private static readonly Rgba32 Bit0 = new ( 0 , 0 , 0 , 255 ) ;
23+ private static readonly Rgba32 Bit1 = new ( 255 , 255 , 255 , 255 ) ;
2424
2525 private static readonly byte [ ] BilevelBytes4X4 =
2626 {
@@ -30,8 +30,7 @@ public class BlackIsZeroTiffColorTests : PhotometricInterpretationTestBase
3030 0b10010000
3131 } ;
3232
33- private static readonly Rgba32 [ ] [ ] BilevelResult4X4 = new [ ]
34- {
33+ private static readonly Rgba32 [ ] [ ] BilevelResult4X4 = {
3534 new [ ] { Bit0 , Bit1 , Bit0 , Bit1 } ,
3635 new [ ] { Bit1 , Bit1 , Bit1 , Bit1 } ,
3736 new [ ] { Bit0 , Bit1 , Bit1 , Bit1 } ,
0 commit comments