-
-
Notifications
You must be signed in to change notification settings - Fork 854
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bitmap encoder writes V3 header as default (#889)
* Bitmap encoder will now write a V3 header as default. Introduces a new encoder option `SupportTransparency`: With this option a V4 header will be written with BITFIELDS compression. * Add 4 and 16 bit images to the Identify test * Add some useful links for bitmap documentation * Add 32 bpp images to the Identify test * Added further information on what will change for the encoder, if SupportTransparency is used.
- Loading branch information
1 parent
ff269db
commit fcc7e5b
Showing
6 changed files
with
100 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
Encoder/Decoder adapted from: | ||
### Encoder/Decoder adapted from: | ||
|
||
https://github.com/yufeih/Nine.Imaging/ | ||
https://imagetools.codeplex.com/ | ||
- [Nine.Imaging](https://github.com/yufeih/Nine.Imaging/) | ||
- [imagetools.codeplex](https://imagetools.codeplex.com/) | ||
|
||
TODO: | ||
### Some useful links for documentation about the bitmap format: | ||
|
||
- Add support for all bitmap formats. | ||
- [Microsoft Windows Bitmap File](http://www.fileformat.info/format/bmp/egff.htm) | ||
- [OS/2 Bitmap File Format Summary](http://www.fileformat.info/format/os2bmp/egff.htm) | ||
- [The DIB File Format](https://www-user.tu-chemnitz.de/~heha/viewchm.php/hs/petzold.chm/petzoldi/ch15b.htm) | ||
- [Dr.Dobbs: The BMP File Format, Part 1](http://www.drdobbs.com/architecture-and-design/the-bmp-file-format-part-1/184409517) | ||
- [Windows Bitmap File Format Specifications](ftp://ftp.nada.kth.se/pub/hacks/sgi/src/libwmf/doc/Bmpfrmat.html) | ||
|
||
### A set of bitmap test images: | ||
|
||
- [bmpsuite](http://entropymine.com/jason/bmpsuite/bmpsuite/html/bmpsuite.html) | ||
- [eclecticgeek](http://eclecticgeek.com/dompdf/core_tests/image_bmp.html) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters