diff --git a/Userland/Utilities/icc.cpp b/Userland/Utilities/icc.cpp index 263592d1ac..cc75432c3c 100644 --- a/Userland/Utilities/icc.cpp +++ b/Userland/Utilities/icc.cpp @@ -25,6 +25,7 @@ ErrorOr serenity_main(Main::Arguments arguments) 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()); + outln("rendering intent: {}", Gfx::ICC::rendering_intent_name(profile->rendering_intent())); return 0; }