1
Fork 0
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:
Nico Weber 2023-03-15 11:54:24 +01:00 committed by Linus Groh
parent 1db0883fea
commit a93a88c73c
2 changed files with 12 additions and 3 deletions

View file

@ -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 {