1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/354829279): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "ui/gfx/icc_profile.h"
#include <array>
#include <list>
#include <set>
#include "base/command_line.h"
#include "base/containers/lru_cache.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/synchronization/lock.h"
#include "third_party/skia/include/core/SkColorSpace.h"
#include "third_party/skia/include/core/SkData.h"
#include "third_party/skia/include/core/SkRefCnt.h"
#include "third_party/skia/include/encode/SkICC.h"
#include "third_party/skia/modules/skcms/skcms.h"
#include "ui/gfx/skia_color_space_util.h"
namespace gfx {
namespace {
static const size_t kMaxCachedICCProfiles = 16;
// An LRU cache mapping data to ICCProfile objects, to avoid re-parsing
// profiles every time they are read.
using DataToProfileCacheBase = base::LRUCache<std::vector<char>, ICCProfile>;
class DataToProfileCache : public DataToProfileCacheBase {
public:
DataToProfileCache() : DataToProfileCacheBase(kMaxCachedICCProfiles) {}
};
base::LazyInstance<DataToProfileCache>::Leaky g_data_to_profile_cache =
LAZY_INSTANCE_INITIALIZER;
// Lock that must be held to access |g_data_to_profile_cache|.
base::LazyInstance<base::Lock>::Leaky g_icc_profile_lock =
LAZY_INSTANCE_INITIALIZER;
} // namespace
void ICCProfile::Internals::Initialize() {
// Start out with no parametric data.
if (data_.empty())
return;
// Parse the profile.
skcms_ICCProfile profile;
if (!skcms_Parse(data_.data(), data_.size(), &profile)) {
DLOG(ERROR) << "Failed to parse ICC profile.";
return;
}
// We have seen many users with profiles that don't have a D50 white point.
// Windows appears to detect these profiles, and not use them for OS drawing.
// It still returns them when we query the system for the installed profile.
// For consistency (and to match old behavior) we reject these profiles on
// all platforms.
// https://crbug.com/847024
const skcms_Matrix3x3& m(profile.toXYZD50);
float wX = m.vals[0][0] + m.vals[0][1] + m.vals[0][2];
float wY = m.vals[1][0] + m.vals[1][1] + m.vals[1][2];
float wZ = m.vals[2][0] + m.vals[2][1] + m.vals[2][2];
static const std::array<float, 3> kD50_WhitePoint = {
0.96420f,
1.00000f,
0.82491f,
};
if (fabsf(wX - kD50_WhitePoint[0]) > 0.04f ||
fabsf(wY - kD50_WhitePoint[1]) > 0.04f ||
fabsf(wZ - kD50_WhitePoint[2]) > 0.04f) {
return;
}
// At this point, the profile is considered valid. We still need to determine
// if it's representable with a parametric transfer function.
is_valid_ = true;
// Extract the primary matrix, and assume that transfer function is sRGB until
// we get something more precise.
to_XYZD50_ = profile.toXYZD50;
transfer_fn_ = SkNamedTransferFn::kSRGB;
// Coerce it into a rasterization destination (if possible). If the profile
// can't be approximated accurately, then use an sRGB transfer function and
// return failure. We will continue to use the gamut from this profile.
if (!skcms_MakeUsableAsDestinationWithSingleCurve(&profile)) {
DLOG(ERROR) << "Parsed ICC profile but can't make usable as destination, "
"using sRGB gamma";
return;
}
// If SkColorSpace will treat the gamma as that of sRGB, then use the named
// constants.
sk_sp<SkColorSpace> sk_color_space = SkColorSpace::Make(profile);
if (!sk_color_space) {
DLOG(ERROR) << "Parsed ICC profile but cannot create SkColorSpace from it, "
"using sRGB gamma.";
return;
}
// We were able to get a parametric representation of the transfer function.
is_parametric_ = true;
if (sk_color_space->gammaCloseToSRGB())
return;
// We assume that if we accurately approximated the profile, then the
// single-curve version (which may have higher error) is also okay. If we
// want to maintain the distinction between accurate and inaccurate profiles,
// we could check to see if the single-curve version is/ approximately equal
// to the original (or to the multi-channel approximation).
transfer_fn_ = profile.trc[0].parametric;
}
ICCProfile::ICCProfile() = default;
ICCProfile::ICCProfile(ICCProfile&& other) = default;
ICCProfile::ICCProfile(const ICCProfile& other) = default;
ICCProfile& ICCProfile::operator=(ICCProfile&& other) = default;
ICCProfile& ICCProfile::operator=(const ICCProfile& other) = default;
ICCProfile::~ICCProfile() = default;
bool ICCProfile::operator==(const ICCProfile& other) const {
if (!internals_ && !other.internals_)
return true;
if (internals_ && other.internals_) {
return internals_->data_ == other.internals_->data_;
}
return false;
}
bool ICCProfile::IsValid() const {
return internals_ ? internals_->is_valid_ : false;
}
std::vector<char> ICCProfile::GetData() const {
return internals_ ? internals_->data_ : std::vector<char>();
}
// static
ICCProfile ICCProfile::FromData(const void* data_as_void, size_t size) {
const char* data_as_byte = reinterpret_cast<const char*>(data_as_void);
std::vector<char> data(data_as_byte, data_as_byte + size);
base::AutoLock lock(g_icc_profile_lock.Get());
// See if there is already an entry with the same data. If so, return that
// entry. If not, parse the data.
ICCProfile icc_profile;
auto found_by_data = g_data_to_profile_cache.Get().Get(data);
if (found_by_data != g_data_to_profile_cache.Get().end()) {
icc_profile = found_by_data->second;
} else {
icc_profile.internals_ = base::MakeRefCounted<Internals>(std::move(data));
}
// Insert the profile into all caches.
g_data_to_profile_cache.Get().Put(icc_profile.internals_->data_, icc_profile);
return icc_profile;
}
ColorSpace ICCProfile::GetColorSpace() const {
if (!internals_ || !internals_->is_valid_)
return ColorSpace();
return ColorSpace(ColorSpace::PrimaryID::CUSTOM,
ColorSpace::TransferID::CUSTOM, ColorSpace::MatrixID::RGB,
ColorSpace::RangeID::FULL, &internals_->to_XYZD50_,
&internals_->transfer_fn_);
}
ColorSpace ICCProfile::GetPrimariesOnlyColorSpace() const {
if (!internals_ || !internals_->is_valid_)
return ColorSpace();
return ColorSpace(ColorSpace::PrimaryID::CUSTOM, ColorSpace::TransferID::SRGB,
ColorSpace::MatrixID::RGB, ColorSpace::RangeID::FULL,
&internals_->to_XYZD50_, nullptr);
}
bool ICCProfile::IsColorSpaceAccurate() const {
if (!internals_)
return false;
if (!internals_->is_valid_)
return false;
return internals_->is_parametric_;
}
// static
ICCProfile ICCProfile::FromColorSpace(const ColorSpace& color_space) {
if (!color_space.IsValid()) {
return ICCProfile();
}
if (color_space.GetMatrixID() != ColorSpace::MatrixID::RGB) {
DLOG(ERROR) << "Not creating non-RGB ICCProfile";
return ICCProfile();
}
if (color_space.GetRangeID() != ColorSpace::RangeID::FULL) {
DLOG(ERROR) << "Not creating non-full-range ICCProfile";
return ICCProfile();
}
skcms_Matrix3x3 to_XYZD50_matrix;
color_space.GetPrimaryMatrix(&to_XYZD50_matrix);
skcms_TransferFunction fn;
if (!color_space.GetTransferFunction(&fn)) {
DLOG(ERROR) << "Failed to get ColorSpace transfer function for ICCProfile.";
return ICCProfile();
}
sk_sp<SkData> data = SkWriteICCProfile(fn, to_XYZD50_matrix);
if (!data) {
DLOG(ERROR) << "Failed to create SkICC.";
return ICCProfile();
}
return FromData(data->data(), data->size());
}
ICCProfile::Internals::Internals(std::vector<char> data)
: data_(std::move(data)) {
// Parse the ICC profile
Initialize();
}
ICCProfile::Internals::~Internals() {}
} // namespace gfx
|