mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:27:43 +00:00
LibGfx: Allow BMPWriter to write v5 bmps and make that the default
This commit is contained in:
parent
1db0883fea
commit
a93a88c73c
2 changed files with 12 additions and 3 deletions
|
@ -18,8 +18,9 @@ struct BMPWriterOptions {
|
|||
Info = 40,
|
||||
V3 = 56,
|
||||
V4 = 108,
|
||||
V5 = 124,
|
||||
};
|
||||
DibHeader dib_header = DibHeader::V4;
|
||||
DibHeader dib_header = DibHeader::V5;
|
||||
};
|
||||
|
||||
class BMPWriter {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue