1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 03:57:35 +00:00

LibGfx: Let BMPWriter optionally embed an ICC profile

This commit is contained in:
Nico Weber 2023-03-15 12:05:36 +01:00 committed by Linus Groh
parent a93a88c73c
commit 6189994b24
2 changed files with 28 additions and 5 deletions

View file

@ -21,6 +21,8 @@ struct BMPWriterOptions {
V5 = 124,
};
DibHeader dib_header = DibHeader::V5;
Optional<ReadonlyBytes> icc_data;
};
class BMPWriter {