2022-12-26 16:21:54 +03:00
|
|
|
/*
|
2023-01-21 04:24:55 +03:00
|
|
|
* Copyright (c) 2022-2023, Nico Weber <thakis@chromium.org>
|
2022-12-26 16:21:54 +03:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2023-01-22 00:14:39 +03:00
|
|
|
#include <AK/String.h>
|
2022-12-26 16:21:54 +03:00
|
|
|
#include <AK/StringView.h>
|
|
|
|
#include <LibCore/ArgsParser.h>
|
2022-12-27 21:38:08 +03:00
|
|
|
#include <LibCore/DateTime.h>
|
2022-12-26 16:21:54 +03:00
|
|
|
#include <LibCore/MappedFile.h>
|
2023-01-27 22:41:42 +03:00
|
|
|
#include <LibGfx/ICC/Profile.h>
|
2023-01-27 22:58:02 +03:00
|
|
|
#include <LibGfx/ICC/Tags.h>
|
2023-01-26 23:16:21 +03:00
|
|
|
#include <LibGfx/ImageDecoder.h>
|
2022-12-26 16:21:54 +03:00
|
|
|
|
2023-01-22 00:14:39 +03:00
|
|
|
template<class T>
|
|
|
|
static ErrorOr<String> hyperlink(URL const& target, T const& label)
|
|
|
|
{
|
|
|
|
return String::formatted("\033]8;;{}\033\\{}\033]8;;\033\\", target, label);
|
|
|
|
}
|
|
|
|
|
2023-01-06 23:57:31 +03:00
|
|
|
template<class T>
|
2023-01-23 05:49:05 +03:00
|
|
|
static void out_optional(char const* label, Optional<T> const& optional)
|
2023-01-06 23:57:31 +03:00
|
|
|
{
|
|
|
|
out("{}: ", label);
|
|
|
|
if (optional.has_value())
|
|
|
|
outln("{}", *optional);
|
|
|
|
else
|
|
|
|
outln("(not set)");
|
|
|
|
}
|
|
|
|
|
2022-12-26 16:21:54 +03:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
|
|
{
|
|
|
|
Core::ArgsParser args_parser;
|
|
|
|
|
2023-01-26 23:16:21 +03:00
|
|
|
static StringView path;
|
|
|
|
args_parser.add_positional_argument(path, "Path to ICC profile or to image containing ICC profile", "FILE");
|
2022-12-26 16:21:54 +03:00
|
|
|
args_parser.parse(arguments);
|
|
|
|
|
2023-01-26 23:16:21 +03:00
|
|
|
auto file = TRY(Core::MappedFile::map(path));
|
|
|
|
ReadonlyBytes icc_bytes;
|
|
|
|
|
|
|
|
auto decoder = Gfx::ImageDecoder::try_create_for_raw_bytes(file->bytes());
|
|
|
|
if (decoder) {
|
|
|
|
if (auto embedded_icc_bytes = TRY(decoder->icc_data()); embedded_icc_bytes.has_value()) {
|
|
|
|
icc_bytes = *embedded_icc_bytes;
|
|
|
|
} else {
|
|
|
|
outln("image contains no embedded ICC profile");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
icc_bytes = file->bytes();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto profile = TRY(Gfx::ICC::Profile::try_load_from_externally_owned_memory(icc_bytes));
|
2022-12-26 16:21:54 +03:00
|
|
|
|
2023-01-21 04:24:55 +03:00
|
|
|
out_optional(" preferred CMM type", profile->preferred_cmm_type());
|
|
|
|
outln(" version: {}", profile->version());
|
|
|
|
outln(" device class: {}", Gfx::ICC::device_class_name(profile->device_class()));
|
|
|
|
outln(" data color space: {}", Gfx::ICC::data_color_space_name(profile->data_color_space()));
|
|
|
|
outln(" connection space: {}", Gfx::ICC::profile_connection_space_name(profile->connection_space()));
|
2023-01-21 04:46:39 +03:00
|
|
|
outln("creation date and time: {}", Core::DateTime::from_timestamp(profile->creation_timestamp()));
|
2023-01-27 00:25:48 +03:00
|
|
|
out_optional(" primary platform", profile->primary_platform().map([](auto platform) { return primary_platform_name(platform); }));
|
2022-12-31 21:50:52 +03:00
|
|
|
|
|
|
|
auto flags = profile->flags();
|
2023-01-21 04:24:55 +03:00
|
|
|
outln(" flags: 0x{:08x}", flags.bits());
|
|
|
|
outln(" - {}embedded in file", flags.is_embedded_in_file() ? "" : "not ");
|
|
|
|
outln(" - can{} be used independently of embedded color data", flags.can_be_used_independently_of_embedded_color_data() ? "" : "not");
|
2022-12-31 21:50:52 +03:00
|
|
|
if (auto unknown_icc_bits = flags.icc_bits() & ~Gfx::ICC::Flags::KnownBitsMask)
|
2023-01-21 04:24:55 +03:00
|
|
|
outln(" other unknown ICC bits: 0x{:04x}", unknown_icc_bits);
|
2022-12-31 21:50:52 +03:00
|
|
|
if (auto color_management_module_bits = flags.color_management_module_bits())
|
2023-01-21 04:24:55 +03:00
|
|
|
outln(" CMM bits: 0x{:04x}", color_management_module_bits);
|
2022-12-31 21:50:52 +03:00
|
|
|
|
2023-01-22 00:14:39 +03:00
|
|
|
out_optional(" device manufacturer", TRY(profile->device_manufacturer().map([](auto device_manufacturer) {
|
|
|
|
return hyperlink(device_manufacturer_url(device_manufacturer), device_manufacturer);
|
|
|
|
})));
|
|
|
|
out_optional(" device model", TRY(profile->device_model().map([](auto device_model) {
|
|
|
|
return hyperlink(device_model_url(device_model), device_model);
|
|
|
|
})));
|
2023-01-06 23:57:45 +03:00
|
|
|
|
2023-01-06 23:06:30 +03:00
|
|
|
auto device_attributes = profile->device_attributes();
|
2023-01-21 04:24:55 +03:00
|
|
|
outln(" device attributes: 0x{:016x}", device_attributes.bits());
|
|
|
|
outln(" media is:");
|
|
|
|
outln(" - {}",
|
|
|
|
device_attributes.media_reflectivity() == Gfx::ICC::DeviceAttributes::MediaReflectivity::Reflective ? "reflective" : "transparent");
|
|
|
|
outln(" - {}",
|
|
|
|
device_attributes.media_glossiness() == Gfx::ICC::DeviceAttributes::MediaGlossiness::Glossy ? "glossy" : "matte");
|
|
|
|
outln(" - {}",
|
|
|
|
device_attributes.media_polarity() == Gfx::ICC::DeviceAttributes::MediaPolarity::Positive ? "of positive polarity" : "of negative polarity");
|
|
|
|
outln(" - {}",
|
2023-01-06 23:06:30 +03:00
|
|
|
device_attributes.media_color() == Gfx::ICC::DeviceAttributes::MediaColor::Colored ? "colored" : "black and white");
|
|
|
|
VERIFY((flags.icc_bits() & ~Gfx::ICC::DeviceAttributes::KnownBitsMask) == 0);
|
|
|
|
if (auto vendor_bits = device_attributes.vendor_bits())
|
2023-01-21 04:24:55 +03:00
|
|
|
outln(" vendor bits: 0x{:08x}", vendor_bits);
|
2023-01-06 23:06:30 +03:00
|
|
|
|
2023-01-21 04:24:55 +03:00
|
|
|
outln(" rendering intent: {}", Gfx::ICC::rendering_intent_name(profile->rendering_intent()));
|
|
|
|
outln(" pcs illuminant: {}", profile->pcs_illuminant());
|
|
|
|
out_optional(" creator", profile->creator());
|
|
|
|
out_optional(" id", profile->id());
|
2023-01-04 22:56:27 +03:00
|
|
|
|
2023-01-26 23:16:21 +03:00
|
|
|
size_t profile_disk_size = icc_bytes.size();
|
2023-01-08 15:07:21 +03:00
|
|
|
if (profile_disk_size != profile->on_disk_size()) {
|
|
|
|
VERIFY(profile_disk_size > profile->on_disk_size());
|
|
|
|
outln("{} trailing bytes after profile data", profile_disk_size - profile->on_disk_size());
|
|
|
|
}
|
|
|
|
|
2023-01-20 22:37:25 +03:00
|
|
|
outln("");
|
|
|
|
|
|
|
|
outln("tags:");
|
2023-01-24 03:34:48 +03:00
|
|
|
HashMap<Gfx::ICC::TagData*, Gfx::ICC::TagSignature> tag_data_to_first_signature;
|
|
|
|
profile->for_each_tag([&tag_data_to_first_signature](auto tag_signature, auto tag_data) {
|
2023-01-24 23:24:39 +03:00
|
|
|
if (auto name = tag_signature_spec_name(tag_signature); name.has_value())
|
|
|
|
out("{} ({}): ", *name, tag_signature);
|
|
|
|
else
|
|
|
|
out("Unknown tag ({}): ", tag_signature);
|
|
|
|
outln("type {}, offset {}, size {}", tag_data->type(), tag_data->offset(), tag_data->size());
|
2023-01-22 05:40:36 +03:00
|
|
|
|
2023-01-24 03:34:48 +03:00
|
|
|
// Print tag data only the first time it's seen.
|
|
|
|
// (Different sigatures can refer to the same data.)
|
|
|
|
auto it = tag_data_to_first_signature.find(tag_data);
|
|
|
|
if (it != tag_data_to_first_signature.end()) {
|
|
|
|
outln(" (see {} above)", it->value);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
tag_data_to_first_signature.set(tag_data, tag_signature);
|
|
|
|
|
2023-01-23 21:14:20 +03:00
|
|
|
if (tag_data->type() == Gfx::ICC::CurveTagData::Type) {
|
|
|
|
auto& curve = static_cast<Gfx::ICC::CurveTagData&>(*tag_data);
|
|
|
|
if (curve.values().is_empty()) {
|
|
|
|
outln(" identity curve");
|
|
|
|
} else if (curve.values().size() == 1) {
|
|
|
|
outln(" gamma: {}", FixedPoint<8, u16>::create_raw(curve.values()[0]));
|
|
|
|
} else {
|
|
|
|
// FIXME: Maybe print the actual points if -v is passed?
|
|
|
|
outln(" curve with {} points", curve.values().size());
|
|
|
|
}
|
|
|
|
} else if (tag_data->type() == Gfx::ICC::MultiLocalizedUnicodeTagData::Type) {
|
2023-01-22 05:48:08 +03:00
|
|
|
auto& multi_localized_unicode = static_cast<Gfx::ICC::MultiLocalizedUnicodeTagData&>(*tag_data);
|
|
|
|
for (auto& record : multi_localized_unicode.records()) {
|
|
|
|
outln(" {:c}{:c}/{:c}{:c}: \"{}\"",
|
|
|
|
record.iso_639_1_language_code >> 8, record.iso_639_1_language_code & 0xff,
|
|
|
|
record.iso_3166_1_country_code >> 8, record.iso_3166_1_country_code & 0xff,
|
|
|
|
record.text);
|
|
|
|
}
|
2023-01-23 21:55:57 +03:00
|
|
|
} else if (tag_data->type() == Gfx::ICC::ParametricCurveTagData::Type) {
|
|
|
|
auto& parametric_curve = static_cast<Gfx::ICC::ParametricCurveTagData&>(*tag_data);
|
|
|
|
switch (parametric_curve.function_type()) {
|
|
|
|
case Gfx::ICC::ParametricCurveTagData::FunctionType::Type0:
|
2023-01-25 22:56:46 +03:00
|
|
|
outln(" Y = X**{}", parametric_curve.g());
|
2023-01-23 21:55:57 +03:00
|
|
|
break;
|
|
|
|
case Gfx::ICC::ParametricCurveTagData::FunctionType::Type1:
|
2023-01-25 22:56:46 +03:00
|
|
|
outln(" Y = ({}*X + {})**{} if X >= -{}/{}",
|
2023-01-23 21:55:57 +03:00
|
|
|
parametric_curve.a(), parametric_curve.b(), parametric_curve.g(), parametric_curve.b(), parametric_curve.a());
|
2023-01-25 22:56:46 +03:00
|
|
|
outln(" Y = 0 else");
|
2023-01-23 21:55:57 +03:00
|
|
|
break;
|
|
|
|
case Gfx::ICC::ParametricCurveTagData::FunctionType::Type2:
|
2023-01-25 22:56:46 +03:00
|
|
|
outln(" Y = ({}*X + {})**{} + {} if X >= -{}/{}",
|
2023-01-23 21:55:57 +03:00
|
|
|
parametric_curve.a(), parametric_curve.b(), parametric_curve.g(), parametric_curve.c(), parametric_curve.b(), parametric_curve.a());
|
2023-01-25 22:56:46 +03:00
|
|
|
outln(" Y = {} else", parametric_curve.c());
|
2023-01-23 21:55:57 +03:00
|
|
|
break;
|
|
|
|
case Gfx::ICC::ParametricCurveTagData::FunctionType::Type3:
|
2023-01-25 22:56:46 +03:00
|
|
|
outln(" Y = ({}*X + {})**{} if X >= {}",
|
2023-01-23 21:55:57 +03:00
|
|
|
parametric_curve.a(), parametric_curve.b(), parametric_curve.g(), parametric_curve.d());
|
2023-01-26 03:27:27 +03:00
|
|
|
outln(" Y = {}*X else", parametric_curve.c());
|
2023-01-23 21:55:57 +03:00
|
|
|
break;
|
|
|
|
case Gfx::ICC::ParametricCurveTagData::FunctionType::Type4:
|
2023-01-25 22:56:46 +03:00
|
|
|
outln(" Y = ({}*X + {})**{} + {} if X >= {}",
|
2023-01-23 21:55:57 +03:00
|
|
|
parametric_curve.a(), parametric_curve.b(), parametric_curve.g(), parametric_curve.e(), parametric_curve.d());
|
2023-01-25 22:56:46 +03:00
|
|
|
outln(" Y = {}*X + {} else", parametric_curve.c(), parametric_curve.f());
|
2023-01-23 21:55:57 +03:00
|
|
|
break;
|
|
|
|
}
|
2023-01-23 19:00:22 +03:00
|
|
|
} else if (tag_data->type() == Gfx::ICC::S15Fixed16ArrayTagData::Type) {
|
|
|
|
// This tag can contain arbitrarily many fixed-point numbers, but in practice it's
|
|
|
|
// exclusively used for the 'chad' tag, where it always contains 9 values that
|
|
|
|
// represent a 3x3 matrix. So print the values in groups of 3.
|
|
|
|
auto& fixed_array = static_cast<Gfx::ICC::S15Fixed16ArrayTagData&>(*tag_data);
|
|
|
|
out(" [");
|
|
|
|
int i = 0;
|
|
|
|
for (auto value : fixed_array.values()) {
|
|
|
|
if (i > 0) {
|
|
|
|
out(",");
|
|
|
|
if (i % 3 == 0) {
|
|
|
|
outln();
|
|
|
|
out(" ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out(" {}", value);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
outln(" ]");
|
2023-01-23 05:49:05 +03:00
|
|
|
} else if (tag_data->type() == Gfx::ICC::TextDescriptionTagData::Type) {
|
|
|
|
auto& text_description = static_cast<Gfx::ICC::TextDescriptionTagData&>(*tag_data);
|
|
|
|
outln(" ascii: \"{}\"", text_description.ascii_description());
|
|
|
|
out_optional(" unicode", MUST(text_description.unicode_description().map([](auto description) { return String::formatted("\"{}\"", description); })));
|
|
|
|
outln(" unicode language code: 0x{}", text_description.unicode_language_code());
|
|
|
|
out_optional(" macintosh", MUST(text_description.macintosh_description().map([](auto description) { return String::formatted("\"{}\"", description); })));
|
2023-01-22 05:48:08 +03:00
|
|
|
} else if (tag_data->type() == Gfx::ICC::TextTagData::Type) {
|
2023-01-22 05:40:36 +03:00
|
|
|
outln(" text: \"{}\"", static_cast<Gfx::ICC::TextTagData&>(*tag_data).text());
|
2023-01-23 06:25:44 +03:00
|
|
|
} else if (tag_data->type() == Gfx::ICC::XYZTagData::Type) {
|
|
|
|
for (auto& xyz : static_cast<Gfx::ICC::XYZTagData&>(*tag_data).xyzs())
|
|
|
|
outln(" {}", xyz);
|
2023-01-22 05:40:36 +03:00
|
|
|
}
|
2023-01-20 22:37:25 +03:00
|
|
|
});
|
|
|
|
|
2022-12-26 16:21:54 +03:00
|
|
|
return 0;
|
|
|
|
}
|