1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:37:36 +00:00

LibGfx+icc: Print pcs illuminant

This commit is contained in:
Nico Weber 2023-01-01 07:09:38 -05:00 committed by Andreas Kling
parent 3df2eb66be
commit 79badfd650
3 changed files with 47 additions and 3 deletions

View file

@ -37,6 +37,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
outln(" CMM bits: 0x{:04x}", color_management_module_bits);
outln("rendering intent: {}", Gfx::ICC::rendering_intent_name(profile->rendering_intent()));
outln("pcs illuminant: {}", profile->pcs_illuminant());
return 0;
}