From ca4ebf5d1b5619eef3ec76942232ed511b69cb21 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Fri, 30 Dec 2022 08:15:59 -0500 Subject: [PATCH] icc: Print rendering intent --- Userland/Utilities/icc.cpp | 1 + 1 file changed, 1 insertion(+) 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; }