icc: Print data color space

This commit is contained in:
Nico Weber 2022-12-30 07:55:18 -05:00 committed by Tim Flynn
commit b7a627ab06
Notes: sideshowbarker 2024-07-17 03:51:15 +09:00

View file

@ -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;