LibGfx+icc: Print pcs illuminant

This commit is contained in:
Nico Weber 2023-01-01 07:09:38 -05:00 committed by Andreas Kling
commit 79badfd650
Notes: sideshowbarker 2024-07-17 02:18:36 +09:00
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;
}