diff options
author | Nico Weber <thakis@chromium.org> | 2022-12-30 07:55:18 -0500 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2022-12-30 10:14:22 -0500 |
commit | b7a627ab0689cb0b0833ebc0a415a7ddc906956b (patch) | |
tree | 59efec48ae715df3e80ed39731410fac93c742a6 /Userland/Utilities | |
parent | eaf1f67bb18c628f3d6d89963270ca6964083d9e (diff) | |
download | serenity-b7a627ab0689cb0b0833ebc0a415a7ddc906956b.zip |
icc: Print data color space
Diffstat (limited to 'Userland/Utilities')
-rw-r--r-- | Userland/Utilities/icc.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Utilities/icc.cpp b/Userland/Utilities/icc.cpp index 3c8e2da696..263592d1ac 100644 --- a/Userland/Utilities/icc.cpp +++ b/Userland/Utilities/icc.cpp @@ -23,6 +23,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) outln("version: {}", profile->version()); outln("device class: {}", Gfx::ICC::device_class_name(profile->device_class())); + outln("data color space: {}", Gfx::ICC::color_space_name(profile->data_color_space())); outln("creation date and time: {}", Core::DateTime::from_timestamp(profile->creation_timestamp()).to_deprecated_string()); return 0; |