* Format conversion models
* Format color spaces
* Add missing periods
* Replace Endianness enum with isBigEndian
* Seal DoubleBufferedStreamReader
* Remove unused namespaces
* Simplify variable names
* Remove unused namespace
* Format Block8x8F
* Use MathF
* Simplify exception when an encoder is not found
* Format ICC models
* Simplify excption messages in ExifValue (reduces IL size)
* Add missing periods to documentation.
* Format ImageProperty
* Format BmpImageFormatDetector
* Seal LocalFileSystem
* Seal JpegColorConverter implementations
* Add missing periods to jpeg documentation
* Format ValueSize
* Fix stylecop violation
* Revert "Simplify excption messages in ExifValue (reduces IL size)"
This reverts commit d22f2a679f.
* Added support for OS/2 version 2 bitmaps
* throw NotSupportedException, if the file header type is not BM
* renamed Os2v2 to Os2v2Size
* Added BmpThrowHelper similar to the JpegThrowHelper
* decoding bitmaps with Bitfields masks
* added testcases for Bitfields bitmaps
* added parsing of the complete bitmap V4 header to get the color masks infos for the BITFIELDS compression
* writing now explicitly a Bitamp v3 header (40 bytes)
* added test image for issue #735
* fixed rescaling 5-bit / 6-bit to 0 - 255 range
* BitmapEncoder now writes BMP v4 header
* using MemoryMarshal.Cast to simplify parsing v4 header
* added testcases for bitmap v3, v4, v5
* Bitmap encoder writes again V3 header instead of V4. Additional fields for V4 are zero anyway.
* added parsing of special case for 56 bytes headers
* using the alpha mask in ReadRgb32BitFields() when its present
* added support for bitmasks greater then 8 bits per channel
* using MagickReferenceDecoder reference decoder for the test with 10 bits pixel masks
* changed bitmap constants to hex
* added enum for the bitmap info header type
* added support for 52 bytes header (same as 56 bytes without the alpha mask)
* clarified comment with difference between imagesharp and magick decoder for Rgba321010102
* BmpEncoder now writes a V4 info header and uses BITFIELDS compression
* workaround for issue that the decoder does not decode the alpha channel correctly: For V3 bitmaps, the alpha channel will be ignored during encoding
* Fix#732