|
|
|
@ -165,12 +165,30 @@ namespace SixLabors.ImageSharp.Tests |
|
|
|
public const string V5Header = "Bmp/BITMAPV5HEADER.bmp"; |
|
|
|
public const string RLE = "Bmp/RunLengthEncoded.bmp"; |
|
|
|
public const string RLEInverted = "Bmp/RunLengthEncoded-inverted.bmp"; |
|
|
|
public const string Bit1 = "Bmp/pal1.bmp"; |
|
|
|
public const string Bit1Pal1 = "Bmp/pal1p1.bmp"; |
|
|
|
public const string Bit4 = "Bmp/pal4.bmp"; |
|
|
|
public const string Bit8 = "Bmp/test8.bmp"; |
|
|
|
public const string Bit8Inverted = "Bmp/test8-inverted.bmp"; |
|
|
|
public const string Bit16 = "Bmp/test16.bmp"; |
|
|
|
public const string Bit16Inverted = "Bmp/test16-inverted.bmp"; |
|
|
|
|
|
|
|
public static readonly string[] All = { Car, F, NegHeight, CoreHeader, V5Header, RLE, RLEInverted, Bit8, Bit8Inverted, Bit16, Bit16Inverted }; |
|
|
|
public static readonly string[] All |
|
|
|
= { |
|
|
|
Car, |
|
|
|
F, |
|
|
|
NegHeight, |
|
|
|
CoreHeader, |
|
|
|
V5Header, RLE, |
|
|
|
RLEInverted, |
|
|
|
Bit1, |
|
|
|
Bit1Pal1, |
|
|
|
Bit4, |
|
|
|
Bit8, |
|
|
|
Bit8Inverted, |
|
|
|
Bit16, |
|
|
|
Bit16Inverted |
|
|
|
}; |
|
|
|
} |
|
|
|
|
|
|
|
public static class Gif |
|
|
|
|