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 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/media_message_center/media_notification_background_impl.h"
#include <algorithm>
#include <vector>
#include "base/i18n/rtl.h"
#include "cc/paint/paint_shader.h"
#include "skia/ext/image_operations.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/skia/include/core/SkColor.h"
#include "third_party/skia/include/core/SkPath.h"
#include "third_party/skia/include/core/SkPathTypes.h"
#include "third_party/skia/include/core/SkPoint.h"
#include "third_party/skia/include/core/SkScalar.h"
#include "third_party/skia/include/core/SkTileMode.h"
#include "ui/color/color_id.h"
#include "ui/color/color_provider.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/color_analysis.h"
#include "ui/gfx/color_utils.h"
#include "ui/gfx/geometry/skia_conversions.h"
#include "ui/gfx/scoped_canvas.h"
#include "ui/views/style/typography.h"
#include "ui/views/style/typography_provider.h"
#include "ui/views/view.h"
namespace media_message_center {
namespace {
constexpr int kMediaImageGradientWidth = 40;
// The ratio for a background color option to be considered very popular.
constexpr double kMediaNotificationBackgroundColorVeryPopularRatio = 2.5;
// The ratio for the most popular foreground color to be used.
constexpr double kMediaNotificationForegroundColorMostPopularRatio = 0.01;
// The minimum saturation for the most popular foreground color to be used.
constexpr double kMediaNotificationForegroundColorMostPopularMinSaturation =
0.19;
// The ratio for the more vibrant foreground color to use.
constexpr double kMediaNotificationForegroundColorMoreVibrantRatio = 1.0;
constexpr float kMediaNotificationMinimumContrastRatio = 7.0;
bool IsNearlyWhiteOrBlack(SkColor color) {
color_utils::HSL hsl;
color_utils::SkColorToHSL(color, &hsl);
return hsl.l >= 0.9 || hsl.l <= 0.08;
}
int GetHueDegrees(const SkColor& color) {
color_utils::HSL hsl;
color_utils::SkColorToHSL(color, &hsl);
return hsl.h * 360;
}
double GetSaturation(const color_utils::Swatch& swatch) {
color_utils::HSL hsl;
color_utils::SkColorToHSL(swatch.color, &hsl);
return hsl.s;
}
bool IsForegroundColorSwatchAllowed(const SkColor& background,
const SkColor& candidate) {
if (IsNearlyWhiteOrBlack(candidate))
return false;
if (IsNearlyWhiteOrBlack(background))
return true;
int diff = abs(GetHueDegrees(candidate) - GetHueDegrees(background));
return diff > 10 && diff < 350;
}
std::optional<SkColor> GetNotificationBackgroundColor(const SkBitmap* source) {
if (!source || source->empty() || source->isNull())
return std::nullopt;
std::vector<color_utils::Swatch> swatches =
color_utils::CalculateColorSwatches(
*source, 16, gfx::Rect(source->width() / 2, source->height()),
std::nullopt);
if (swatches.empty())
return std::nullopt;
std::optional<color_utils::Swatch> most_popular;
std::optional<color_utils::Swatch> non_white_black;
// Find the most popular color with the most weight and the color which
// is the color with the most weight that is not white or black.
for (auto& swatch : swatches) {
if (!IsNearlyWhiteOrBlack(swatch.color) &&
(!non_white_black || swatch.population > non_white_black->population)) {
non_white_black = swatch;
}
if (most_popular && swatch.population < most_popular->population)
continue;
most_popular = swatch;
}
DCHECK(most_popular);
// If the most popular color is not white or black then we should use that.
if (!IsNearlyWhiteOrBlack(most_popular->color))
return most_popular->color;
// If we could not find a color that is not white or black then we should
// use the most popular color.
if (!non_white_black)
return most_popular->color;
// If the most popular color is very popular then we should use that color.
if (static_cast<double>(most_popular->population) /
non_white_black->population >
kMediaNotificationBackgroundColorVeryPopularRatio) {
return most_popular->color;
}
return non_white_black->color;
}
color_utils::Swatch SelectVibrantSwatch(const color_utils::Swatch& more_vibrant,
const color_utils::Swatch& vibrant) {
if ((static_cast<double>(more_vibrant.population) / vibrant.population) <
kMediaNotificationForegroundColorMoreVibrantRatio) {
return vibrant;
}
return more_vibrant;
}
color_utils::Swatch SelectMutedSwatch(const color_utils::Swatch& muted,
const color_utils::Swatch& more_muted) {
double population_ratio =
static_cast<double>(muted.population) / more_muted.population;
// Use the swatch with the higher saturation ratio.
return (GetSaturation(muted) * population_ratio > GetSaturation(more_muted))
? muted
: more_muted;
}
std::optional<SkColor> GetNotificationForegroundColor(
const std::optional<SkColor>& background_color,
const SkBitmap* source) {
if (!background_color || !source || source->empty() || source->isNull())
return std::nullopt;
const bool is_light =
color_utils::GetRelativeLuminance(*background_color) > 0.5;
const SkColor fallback_color = is_light ? SK_ColorBLACK : SK_ColorWHITE;
gfx::Rect bitmap_area(source->width(), source->height());
bitmap_area.Inset(gfx::Insets::TLBR(0, source->width() * 0.4, 0, 0));
// If the background color is dark we want to look for colors that are darker
// and vice versa.
const color_utils::LumaRange more_luma_range =
is_light ? color_utils::LumaRange::DARK : color_utils::LumaRange::LIGHT;
std::vector<color_utils::ColorProfile> color_profiles;
color_profiles.push_back(color_utils::ColorProfile(
more_luma_range, color_utils::SaturationRange::VIBRANT));
color_profiles.push_back(color_utils::ColorProfile(
color_utils::LumaRange::NORMAL, color_utils::SaturationRange::VIBRANT));
color_profiles.push_back(color_utils::ColorProfile(
color_utils::LumaRange::NORMAL, color_utils::SaturationRange::MUTED));
color_profiles.push_back(color_utils::ColorProfile(
more_luma_range, color_utils::SaturationRange::MUTED));
color_profiles.push_back(color_utils::ColorProfile(
color_utils::LumaRange::ANY, color_utils::SaturationRange::ANY));
std::vector<color_utils::Swatch> best_swatches =
color_utils::CalculateProminentColorsOfBitmap(
*source, color_profiles, &bitmap_area,
base::BindRepeating(&IsForegroundColorSwatchAllowed,
background_color.value()));
if (best_swatches.empty())
return fallback_color;
DCHECK_EQ(5u, best_swatches.size());
const color_utils::Swatch& more_vibrant = best_swatches[0];
const color_utils::Swatch& vibrant = best_swatches[1];
const color_utils::Swatch& muted = best_swatches[2];
const color_utils::Swatch& more_muted = best_swatches[3];
const color_utils::Swatch& most_popular = best_swatches[4];
// We are looking for a fraction that is at least 0.2% of the image.
const size_t population_min =
std::min(bitmap_area.width() * bitmap_area.height(),
color_utils::kMaxConsideredPixelsForSwatches) *
0.002;
// This selection algorithm is an implementation of MediaNotificationProcessor
// from Android. It will select more vibrant colors first since they stand out
// better against the background. If not, it will fallback to muted colors,
// the most popular color and then either white/black. Any swatch has to be
// above a minimum population threshold to be determined significant enough in
// the artwork to be used.
std::optional<color_utils::Swatch> swatch;
if (more_vibrant.population > population_min &&
vibrant.population > population_min) {
swatch = SelectVibrantSwatch(more_vibrant, vibrant);
} else if (more_vibrant.population > population_min) {
swatch = more_vibrant;
} else if (vibrant.population > population_min) {
swatch = vibrant;
} else if (muted.population > population_min &&
more_muted.population > population_min) {
swatch = SelectMutedSwatch(muted, more_muted);
} else if (muted.population > population_min) {
swatch = muted;
} else if (more_muted.population > population_min) {
swatch = more_muted;
} else if (most_popular.population > population_min) {
return most_popular.color;
} else {
return fallback_color;
}
if (most_popular == *swatch)
return swatch->color;
if (static_cast<double>(swatch->population) / most_popular.population <
kMediaNotificationForegroundColorMostPopularRatio &&
GetSaturation(most_popular) >
kMediaNotificationForegroundColorMostPopularMinSaturation) {
return most_popular.color;
}
return swatch->color;
}
} // namespace
MediaNotificationBackgroundImpl::MediaNotificationBackgroundImpl(
int top_radius,
int bottom_radius,
double artwork_max_width_pct)
: top_radius_(top_radius),
bottom_radius_(bottom_radius),
artwork_max_width_pct_(artwork_max_width_pct) {}
MediaNotificationBackgroundImpl::~MediaNotificationBackgroundImpl() = default;
void MediaNotificationBackgroundImpl::Paint(gfx::Canvas* canvas,
views::View* view) const {
DCHECK(view);
gfx::ScopedCanvas scoped_canvas(canvas);
gfx::Rect bounds = view->GetContentsBounds();
{
// Draw a rounded rectangle which the background will be clipped to. The
// radius is provided by the notification and can change based on where in
// the list the notification is.
const SkScalar top_radius = SkIntToScalar(top_radius_);
const SkScalar bottom_radius = SkIntToScalar(bottom_radius_);
const SkScalar radii[8] = {top_radius, top_radius, top_radius,
top_radius, bottom_radius, bottom_radius,
bottom_radius, bottom_radius};
SkPath path;
path.addRoundRect(gfx::RectToSkRect(bounds), radii, SkPathDirection::kCW);
canvas->ClipPath(path, true);
}
{
// Draw the artwork. The artwork is resized to the height of the view while
// maintaining the aspect ratio.
gfx::Rect source_bounds =
gfx::Rect(0, 0, artwork_.width(), artwork_.height());
gfx::Rect artwork_bounds = GetArtworkBounds(*view);
canvas->DrawImageInt(
artwork_, source_bounds.x(), source_bounds.y(), source_bounds.width(),
source_bounds.height(), artwork_bounds.x(), artwork_bounds.y(),
artwork_bounds.width(), artwork_bounds.height(), false /* filter */);
}
// Draw a filled rectangle which will act as the main background of the
// notification. This may cover up some of the artwork.
const SkColor background_color =
background_color_.value_or(GetDefaultBackgroundColor(*view));
canvas->FillRect(GetFilledBackgroundBounds(*view), background_color);
{
// Draw a gradient to fade the color background and the image together.
gfx::Rect draw_bounds = GetGradientBounds(*view);
// TODO(crbug.com/40219248): Remove FromColor and make all SkColor4f.
const SkColor4f colors[2] = {SkColor4f::FromColor(background_color),
SkColor4f::FromColor(SkColorSetA(
background_color, SK_AlphaTRANSPARENT))};
const SkPoint points[2] = {GetGradientStartPoint(draw_bounds),
GetGradientEndPoint(draw_bounds)};
cc::PaintFlags flags;
flags.setAntiAlias(true);
flags.setStyle(cc::PaintFlags::kFill_Style);
flags.setShader(cc::PaintShader::MakeLinearGradient(points, colors, nullptr,
2, SkTileMode::kClamp));
canvas->DrawRect(draw_bounds, flags);
}
if (audio_device_selector_visible_) {
// Draw a gradient to fade the color background of the audio device picker
// and the image together.
gfx::Rect draw_bounds = GetBottomGradientBounds(*view);
// TODO(crbug.com/40219248): Remove FromColor and make all SkColor4f.
const SkColor4f colors[2] = {SkColor4f::FromColor(background_color),
SkColor4f::FromColor(SkColorSetA(
background_color, SK_AlphaTRANSPARENT))};
const SkPoint points[2] = {gfx::PointToSkPoint(draw_bounds.bottom_center()),
gfx::PointToSkPoint(draw_bounds.top_center())};
cc::PaintFlags flags;
flags.setAntiAlias(true);
flags.setStyle(cc::PaintFlags::kFill_Style);
flags.setShader(cc::PaintShader::MakeLinearGradient(points, colors, nullptr,
2, SkTileMode::kClamp));
canvas->DrawRect(draw_bounds, flags);
}
}
void MediaNotificationBackgroundImpl::UpdateArtwork(
const gfx::ImageSkia& image) {
if (artwork_.BackedBySameObjectAs(image))
return;
artwork_ = image;
UpdateColorsInternal();
}
bool MediaNotificationBackgroundImpl::UpdateCornerRadius(int top_radius,
int bottom_radius) {
if (top_radius_ == top_radius && bottom_radius_ == bottom_radius)
return false;
top_radius_ = top_radius;
bottom_radius_ = bottom_radius;
return true;
}
bool MediaNotificationBackgroundImpl::UpdateArtworkMaxWidthPct(
double max_width_pct) {
if (artwork_max_width_pct_ == max_width_pct)
return false;
artwork_max_width_pct_ = max_width_pct;
return true;
}
void MediaNotificationBackgroundImpl::UpdateFavicon(
const gfx::ImageSkia& icon) {
if (favicon_.BackedBySameObjectAs(icon))
return;
favicon_ = icon;
if (!artwork_.isNull())
return;
UpdateColorsInternal();
}
void MediaNotificationBackgroundImpl::UpdateDeviceSelectorVisibility(
bool visible) {
audio_device_selector_visible_ = visible;
}
SkColor MediaNotificationBackgroundImpl::GetBackgroundColor(
const views::View& owner) const {
if (background_color_.has_value())
return *background_color_;
return GetDefaultBackgroundColor(owner);
}
SkColor MediaNotificationBackgroundImpl::GetForegroundColor(
const views::View& owner) const {
const SkColor foreground =
foreground_color_.value_or(owner.GetColorProvider()->GetColor(
views::TypographyProvider::Get().GetColorId(
views::style::CONTEXT_LABEL, views::style::STYLE_PRIMARY)));
return color_utils::BlendForMinContrast(
foreground, GetBackgroundColor(owner), std::nullopt,
kMediaNotificationMinimumContrastRatio)
.color;
}
int MediaNotificationBackgroundImpl::GetArtworkWidth(
const gfx::Size& view_size) const {
if (artwork_.isNull())
return 0;
// Calculate the aspect ratio of the image and determine what the width of the
// image should be based on that ratio and the height of the notification.
float aspect_ratio = (float)artwork_.width() / artwork_.height();
return ceil(view_size.height() * aspect_ratio);
}
int MediaNotificationBackgroundImpl::GetArtworkVisibleWidth(
const gfx::Size& view_size) const {
// The artwork should only take up a maximum percentage of the notification.
return std::min(GetArtworkWidth(view_size),
(int)ceil(view_size.width() * artwork_max_width_pct_));
}
gfx::Rect MediaNotificationBackgroundImpl::GetArtworkBounds(
const views::View& owner) const {
const gfx::Rect& view_bounds = owner.GetContentsBounds();
int width = GetArtworkWidth(view_bounds.size());
int visible_width = GetArtworkVisibleWidth(view_bounds.size());
// This offset is for centering artwork if artwork visible width is smaller
// than artwork width.
int horizontal_offset = (width - visible_width) / 2;
// The artwork should be positioned on the far right hand side of the
// notification and be the same height.
return owner.GetMirroredRect(
gfx::Rect(view_bounds.right() - width + horizontal_offset, 0, width,
view_bounds.height()));
}
gfx::Rect MediaNotificationBackgroundImpl::GetFilledBackgroundBounds(
const views::View& owner) const {
// The filled background should take up the full notification except the area
// taken up by the artwork.
const gfx::Rect& view_bounds = owner.GetContentsBounds();
gfx::Rect bounds = gfx::Rect(view_bounds);
bounds.Inset(
gfx::Insets().set_right(GetArtworkVisibleWidth(view_bounds.size())));
return owner.GetMirroredRect(bounds);
}
gfx::Rect MediaNotificationBackgroundImpl::GetGradientBounds(
const views::View& owner) const {
if (artwork_.isNull())
return gfx::Rect(0, 0, 0, 0);
// The gradient should appear above the artwork on the left.
const gfx::Rect& view_bounds = owner.GetContentsBounds();
return owner.GetMirroredRect(gfx::Rect(
view_bounds.width() - GetArtworkVisibleWidth(view_bounds.size()),
view_bounds.y(), kMediaImageGradientWidth, view_bounds.height()));
}
gfx::Rect MediaNotificationBackgroundImpl::GetBottomGradientBounds(
const views::View& owner) const {
if (artwork_.isNull())
return gfx::Rect(0, 0, 0, 0);
const gfx::Rect& view_bounds = owner.GetContentsBounds();
return owner.GetMirroredRect(gfx::Rect(
gfx::Point(
view_bounds.width() - GetArtworkVisibleWidth(view_bounds.size()),
view_bounds.bottom() - kMediaImageGradientWidth),
gfx::Size(GetArtworkVisibleWidth(view_bounds.size()),
kMediaImageGradientWidth)));
}
SkPoint MediaNotificationBackgroundImpl::GetGradientStartPoint(
const gfx::Rect& draw_bounds) const {
return gfx::PointToSkPoint(base::i18n::IsRTL() ? draw_bounds.right_center()
: draw_bounds.left_center());
}
SkPoint MediaNotificationBackgroundImpl::GetGradientEndPoint(
const gfx::Rect& draw_bounds) const {
return gfx::PointToSkPoint(base::i18n::IsRTL() ? draw_bounds.left_center()
: draw_bounds.right_center());
}
SkColor MediaNotificationBackgroundImpl::GetDefaultBackgroundColor(
const views::View& owner) const {
return owner.GetColorProvider()->GetColor(ui::kColorBubbleBackground);
}
void MediaNotificationBackgroundImpl::UpdateColorsInternal() {
// If there is an artwork, it should be used.
// If there is no artwork, neither a favicon, the artwork bitmap will be used
// which is going to be a null bitmap and produce a default value.
// In the case of there is a favicon and no artwork, the favicon should be
// used to generate the colors.
if (!artwork_.isNull() || favicon_.isNull()) {
background_color_ = GetNotificationBackgroundColor(artwork_.bitmap());
foreground_color_ =
GetNotificationForegroundColor(background_color_, artwork_.bitmap());
return;
}
background_color_ = GetNotificationBackgroundColor(favicon_.bitmap());
if (background_color_) {
// Apply a shade factor on the color as favicons often are fairly bright.
*background_color_ = SkColorSetRGB(
SkColorGetR(*background_color_) * kBackgroundFaviconColorShadeFactor,
SkColorGetG(*background_color_) * kBackgroundFaviconColorShadeFactor,
SkColorGetB(*background_color_) * kBackgroundFaviconColorShadeFactor);
}
foreground_color_ =
GetNotificationForegroundColor(background_color_, favicon_.bitmap());
}
} // namespace media_message_center
|