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 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
|
// Copyright 2014 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/390223051): Remove C-library calls to fix the errors.
#pragma allow_unsafe_libc_calls
#endif
#include "chrome/browser/profiles/profile_avatar_icon_util.h"
#include <algorithm>
#include <array>
#include <cmath>
#include <memory>
#include <string_view>
#include <utility>
#include <vector>
#include "base/feature_list.h"
#include "base/files/file_util.h"
#include "base/format_macros.h"
#include "base/numerics/safe_conversions.h"
#include "base/path_service.h"
#include "base/rand_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "base/values.h"
#include "build/build_config.h"
#include "cc/paint/paint_flags.h"
#include "chrome/app/vector_icons/vector_icons.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/avatar_menu.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/ui/profiles/profile_colors_util.h"
#include "chrome/browser/ui/ui_features.h"
#include "chrome/browser/ui/views/dotted_icon.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/pref_names.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/grit/theme_resources.h"
#include "components/prefs/pref_service.h"
#include "components/signin/public/base/signin_switches.h"
#include "components/vector_icons/vector_icons.h"
#include "skia/ext/image_operations.h"
#include "third_party/skia/include/core/SkColor.h"
#include "third_party/skia/include/core/SkPaint.h"
#include "third_party/skia/include/core/SkPath.h"
#include "third_party/skia/include/core/SkScalar.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/models/image_model.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/base/ui_base_features.h"
#include "ui/base/webui/web_ui_util.h"
#include "ui/color/color_id.h"
#include "ui/color/color_provider.h"
#include "ui/color/color_provider_key.h"
#include "ui/color/dynamic_color/palette_factory.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/color_palette.h"
#include "ui/gfx/favicon_size.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/skia_conversions.h"
#include "ui/gfx/image/canvas_image_source.h"
#include "ui/gfx/image/image.h"
#include "ui/gfx/image/image_skia.h"
#include "ui/gfx/image/image_skia_operations.h"
#include "ui/gfx/paint_vector_icon.h"
#include "ui/native_theme/native_theme.h"
#include "url/url_canon.h"
#if BUILDFLAG(IS_WIN)
#include "base/win/windows_version.h"
#include "chrome/browser/profiles/profile_attributes_entry.h"
#include "chrome/grit/chrome_unscaled_resources.h" // nogncheck crbug.com/1125897
#include "ui/gfx/icon_util.h" // For Iconutil::kLargeIconSize.
#endif
#if BUILDFLAG(IS_MAC)
#include "chrome/browser/profiles/profile_attributes_entry.h"
#include "chrome/browser/profiles/profile_attributes_storage.h"
#include "chrome/browser/profiles/profile_manager.h"
#endif
// Helper methods for transforming and drawing avatar icons.
namespace {
// Palette color tones for the material color utils used to select a
// material-appropriate color for a given profile color,
constexpr float kIconToneDark = 40.f;
constexpr float kIconToneLight = 80.f;
// Values are expressed as a proportion of resulting image size.
struct AvatarWithDottedRingParams {
// Radius of the dotted ring.
float dotted_ring_radius = 0;
// The stroke is fully inside the ring.
float ring_stroke_width = 0;
// Padding around the image to fit it inside the ring.
float image_padding = 0;
};
constexpr AvatarWithDottedRingParams kAvatarWithDottedRingParamsWithPadding = {
.dotted_ring_radius = 0.29,
.ring_stroke_width = 0.05,
.image_padding = 0.3,
};
constexpr AvatarWithDottedRingParams kAvatarWithDottedRingParamsNoPadding = {
.dotted_ring_radius = 0.5,
.ring_stroke_width = 0.075,
.image_padding = 0.13,
};
// Sanity check: the dotted ring is smaller than the full image.
static_assert(kAvatarWithDottedRingParamsWithPadding.dotted_ring_radius <= 0.5);
static_assert(kAvatarWithDottedRingParamsNoPadding.dotted_ring_radius <= 0.5);
// Sanity check: the avatar image fits inside the dotted ring (taking the ring
// stroke width into account).
static_assert(kAvatarWithDottedRingParamsWithPadding.dotted_ring_radius >
0.5 - kAvatarWithDottedRingParamsWithPadding.image_padding +
kAvatarWithDottedRingParamsWithPadding.ring_stroke_width);
static_assert(kAvatarWithDottedRingParamsNoPadding.dotted_ring_radius >
0.5 - kAvatarWithDottedRingParamsNoPadding.image_padding +
kAvatarWithDottedRingParamsNoPadding.ring_stroke_width);
#if BUILDFLAG(IS_WIN)
const int kOldAvatarIconWidth = 38;
const int kOldAvatarIconHeight = 31;
// 2x sized versions of the old profile avatar icons.
// TODO(crbug.com/41444689): Clean this up.
constexpr auto kProfileAvatarIconResources2x = std::to_array<int>({
IDR_PROFILE_AVATAR_2X_0, IDR_PROFILE_AVATAR_2X_1,
IDR_PROFILE_AVATAR_2X_2, IDR_PROFILE_AVATAR_2X_3,
IDR_PROFILE_AVATAR_2X_4, IDR_PROFILE_AVATAR_2X_5,
IDR_PROFILE_AVATAR_2X_6, IDR_PROFILE_AVATAR_2X_7,
IDR_PROFILE_AVATAR_2X_8, IDR_PROFILE_AVATAR_2X_9,
IDR_PROFILE_AVATAR_2X_10, IDR_PROFILE_AVATAR_2X_11,
IDR_PROFILE_AVATAR_2X_12, IDR_PROFILE_AVATAR_2X_13,
IDR_PROFILE_AVATAR_2X_14, IDR_PROFILE_AVATAR_2X_15,
IDR_PROFILE_AVATAR_2X_16, IDR_PROFILE_AVATAR_2X_17,
IDR_PROFILE_AVATAR_2X_18, IDR_PROFILE_AVATAR_2X_19,
IDR_PROFILE_AVATAR_2X_20, IDR_PROFILE_AVATAR_2X_21,
IDR_PROFILE_AVATAR_2X_22, IDR_PROFILE_AVATAR_2X_23,
IDR_PROFILE_AVATAR_2X_24, IDR_PROFILE_AVATAR_2X_25,
IDR_PROFILE_AVATAR_2X_26,
});
// Returns a copied SkBitmap for the given image that can be safely passed to
// another thread.
SkBitmap GetSkBitmapCopy(const gfx::Image& image) {
DCHECK(!image.IsEmpty());
const SkBitmap* image_bitmap = image.ToSkBitmap();
SkBitmap bitmap_copy;
if (bitmap_copy.tryAllocPixels(image_bitmap->info()))
image_bitmap->readPixels(bitmap_copy.info(), bitmap_copy.getPixels(),
bitmap_copy.rowBytes(), 0, 0);
return bitmap_copy;
}
#endif // BUILDFLAG(IS_WIN)
// Determine what the scaled height of the avatar icon should be for a
// specified width, to preserve the aspect ratio.
int GetScaledAvatarHeightForWidth(int width, const gfx::ImageSkia& avatar) {
// Multiply the width by the inverted aspect ratio (height over
// width), and then add 0.5 to ensure the int truncation rounds nicely.
int scaled_height = width *
((float) avatar.height() / (float) avatar.width()) + 0.5f;
return scaled_height;
}
// A CanvasImageSource that draws a sized and positioned avatar with an
// optional border independently of the scale factor.
class AvatarImageSource : public gfx::CanvasImageSource {
public:
enum AvatarPosition {
POSITION_CENTER,
POSITION_BOTTOM_CENTER,
};
AvatarImageSource(gfx::ImageSkia avatar,
const gfx::Size& canvas_size,
int width,
AvatarPosition position,
profiles::AvatarShape shape);
AvatarImageSource(gfx::ImageSkia avatar,
const gfx::Size& canvas_size,
int width,
AvatarPosition position);
AvatarImageSource(const AvatarImageSource&) = delete;
AvatarImageSource& operator=(const AvatarImageSource&) = delete;
~AvatarImageSource() override;
// CanvasImageSource override:
void Draw(gfx::Canvas* canvas) override;
private:
gfx::ImageSkia avatar_;
const gfx::Size canvas_size_;
const int width_;
const int height_;
const AvatarPosition position_;
const profiles::AvatarShape shape_;
};
AvatarImageSource::AvatarImageSource(gfx::ImageSkia avatar,
const gfx::Size& canvas_size,
int width,
AvatarPosition position,
profiles::AvatarShape shape)
: gfx::CanvasImageSource(canvas_size),
canvas_size_(canvas_size),
width_(width),
height_(GetScaledAvatarHeightForWidth(width, avatar)),
position_(position),
shape_(shape) {
avatar_ = gfx::ImageSkiaOperations::CreateResizedImage(
avatar, skia::ImageOperations::RESIZE_BEST,
gfx::Size(width_, height_));
}
AvatarImageSource::AvatarImageSource(gfx::ImageSkia avatar,
const gfx::Size& canvas_size,
int width,
AvatarPosition position)
: AvatarImageSource(avatar,
canvas_size,
width,
position,
profiles::SHAPE_SQUARE) {}
AvatarImageSource::~AvatarImageSource() = default;
void AvatarImageSource::Draw(gfx::Canvas* canvas) {
// Center the avatar horizontally.
int x = (canvas_size_.width() - width_) / 2;
int y;
if (position_ == POSITION_CENTER) {
// Draw the avatar centered on the canvas.
y = (canvas_size_.height() - height_) / 2;
} else {
// Draw the avatar on the bottom center of the canvas, leaving 1px below.
y = canvas_size_.height() - height_ - 1;
}
#if BUILDFLAG(IS_ANDROID)
// Circular shape is only available on desktop platforms.
DCHECK(shape_ != profiles::SHAPE_CIRCLE);
#else
if (shape_ == profiles::SHAPE_CIRCLE) {
// Draw the avatar on the bottom center of the canvas; overrides the
// previous position specification to avoid leaving visible gap below the
// avatar.
y = canvas_size_.height() - height_;
// Calculate the circular mask that will be used to display the avatar
// image.
SkPath circular_mask;
circular_mask.addCircle(SkIntToScalar(canvas_size_.width() / 2),
SkIntToScalar(canvas_size_.height() / 2),
SkIntToScalar(canvas_size_.width() / 2));
canvas->ClipPath(circular_mask, true);
}
#endif
canvas->DrawImageInt(avatar_, x, y);
}
class ImageWithBackgroundSource : public gfx::CanvasImageSource {
public:
ImageWithBackgroundSource(const gfx::ImageSkia& image, SkColor background)
: gfx::CanvasImageSource(image.size()),
image_(image),
background_(background) {}
ImageWithBackgroundSource(const ImageWithBackgroundSource&) = delete;
ImageWithBackgroundSource& operator=(const ImageWithBackgroundSource&) =
delete;
~ImageWithBackgroundSource() override = default;
// gfx::CanvasImageSource override.
void Draw(gfx::Canvas* canvas) override {
canvas->DrawColor(background_);
canvas->DrawImageInt(image_, 0, 0);
}
private:
const gfx::ImageSkia image_;
const SkColor background_;
};
#if !BUILDFLAG(IS_ANDROID)
class ImageWithDottedCircleSource : public gfx::CanvasImageSource {
public:
ImageWithDottedCircleSource(const gfx::ImageSkia& image,
int ring_radius,
float ring_stroke_width,
SkColor ring_color)
: gfx::CanvasImageSource(image.size()),
image_(image),
ring_size_(2 * ring_radius),
ring_stroke_width_(ring_stroke_width),
ring_color_(ring_color) {}
ImageWithDottedCircleSource(const ImageWithDottedCircleSource&) = delete;
ImageWithDottedCircleSource& operator=(const ImageWithDottedCircleSource&) =
delete;
~ImageWithDottedCircleSource() override = default;
// gfx::CanvasImageSource override.
void Draw(gfx::Canvas* canvas) override {
canvas->DrawImageInt(image_, 0, 0);
float padding = (image_.width() - ring_size_) / 2;
PaintRingDottedPath(canvas,
gfx::Rect(padding, padding, ring_size_, ring_size_),
ring_color_,
/*opacity_ratio=*/1,
/*stroke_width=*/ring_stroke_width_);
}
private:
const gfx::ImageSkia image_;
const int ring_size_;
const float ring_stroke_width_;
const SkColor ring_color_;
};
#endif // !BUILDFLAG(IS_ANDROID)
// Returns icon with padding with no background.
const gfx::ImageSkia CreatePaddedIcon(const gfx::VectorIcon& icon,
int size,
SkColor color,
float icon_to_image_ratio) {
const int padding =
static_cast<int>(size * (1.0f - icon_to_image_ratio) / 2.0f);
const gfx::ImageSkia sized_icon =
gfx::CreateVectorIcon(icon, size - 2 * padding, color);
return gfx::CanvasImageSource::CreatePadded(sized_icon, gfx::Insets(padding));
}
class CircleImageSource : public gfx::CanvasImageSource {
public:
CircleImageSource(int size, SkColor color)
: gfx::CanvasImageSource(gfx::Size(size, size)), color_(color) {}
CircleImageSource(const CircleImageSource&) = delete;
CircleImageSource& operator=(const CircleImageSource&) = delete;
~CircleImageSource() override = default;
void Draw(gfx::Canvas* canvas) override {
float radius = size().width() / 2.0f;
cc::PaintFlags flags;
flags.setStyle(cc::PaintFlags::kFill_Style);
flags.setAntiAlias(true);
flags.setColor(color_);
canvas->DrawCircle(gfx::PointF(radius, radius), radius, flags);
}
static gfx::ImageSkia CropCircle(const gfx::ImageSkia& image) {
CHECK_EQ(image.width(), image.height());
// The color here is irrelevant as long as it's opaque; only alpha matters.
return gfx::ImageSkiaOperations::CreateMaskedImage(
image, gfx::CanvasImageSource::MakeImageSkia<CircleImageSource>(
image.width(), SK_ColorWHITE));
}
private:
const SkColor color_;
};
} // namespace
namespace profiles {
struct IconResourceInfo {
int resource_id;
const char* filename;
int label_id;
};
constexpr int kAvatarIconSize = 96;
constexpr SkColor kAvatarTutorialBackgroundColor =
SkColorSetRGB(0x42, 0x85, 0xf4);
constexpr SkColor kAvatarTutorialContentTextColor =
SkColorSetRGB(0xc6, 0xda, 0xfc);
constexpr SkColor kAvatarBubbleAccountsBackgroundColor =
SkColorSetRGB(0xf3, 0xf3, 0xf3);
constexpr SkColor kAvatarBubbleGaiaBackgroundColor =
SkColorSetRGB(0xf5, 0xf5, 0xf5);
constexpr SkColor kUserManagerBackgroundColor = SkColorSetRGB(0xee, 0xee, 0xee);
constexpr std::string_view kDefaultUrlPrefix =
"chrome://theme/IDR_PROFILE_AVATAR_";
constexpr base::FilePath::CharType kGAIAPictureFileName[] =
FILE_PATH_LITERAL("Google Profile Picture.png");
constexpr base::FilePath::CharType kHighResAvatarFolderName[] =
FILE_PATH_LITERAL("Avatars");
// The size of the function-static kDefaultAvatarIconResources array below.
#if BUILDFLAG(IS_ANDROID)
constexpr size_t kDefaultAvatarIconsCount = 1;
#elif BUILDFLAG(IS_CHROMEOS)
constexpr size_t kDefaultAvatarIconsCount = 27;
#else
constexpr size_t kDefaultAvatarIconsCount = 56;
#endif
#if !BUILDFLAG(IS_ANDROID)
// The first 8 icons are generic.
constexpr size_t kGenericAvatarIconsCount = 8;
#else
constexpr size_t kGenericAvatarIconsCount = 0;
#endif
#if !BUILDFLAG(IS_ANDROID)
// The avatar used as a placeholder.
constexpr size_t kPlaceholderAvatarIndex = 26;
#else
constexpr size_t kPlaceholderAvatarIndex = 0;
#endif
ui::ImageModel GetGuestAvatar(int size) {
// Guest profiles generally use the default theme, no need to go through the
// `ThemeService`.
return ui::ImageModel::FromVectorIcon(kAccountBoxIcon, ui::kColorSysPrimary,
size);
}
gfx::Image GetSizedAvatarIcon(const gfx::Image& image,
int width,
int height,
AvatarShape shape) {
gfx::Size size(width, height);
// No need to resize.
if (image.Size() == size) {
switch (shape) {
case AvatarShape::SHAPE_CIRCLE:
if (width == height) {
return gfx::Image(
CircleImageSource::CropCircle(*image.ToImageSkia()));
}
break;
case AvatarShape::SHAPE_SQUARE:
return image;
}
}
// Source for a centered, sized icon.
std::unique_ptr<gfx::ImageSkiaSource> source(
new AvatarImageSource(*image.ToImageSkia(), size, std::min(width, height),
AvatarImageSource::POSITION_CENTER, shape));
return gfx::Image(gfx::ImageSkia(std::move(source), size));
}
gfx::Image GetSizedAvatarIcon(const gfx::Image& image, int width, int height) {
return GetSizedAvatarIcon(image, width, height, profiles::SHAPE_SQUARE);
}
ui::ImageModel GetSizedAvatarImageModel(const ui::ImageModel& image, int size) {
DCHECK(!image.IsImageGenerator()); // Not prepared to handle these.
if (image.IsImage()) {
gfx::ImageSkia image_skia = image.GetImage().AsImageSkia();
return ui::ImageModel::FromImageSkia(
gfx::ImageSkiaOperations::CreateResizedImage(
image_skia, skia::ImageOperations::RESIZE_BEST,
gfx::Size(size, size)));
}
const ui::VectorIconModel& model = image.GetVectorIcon();
return ui::ImageModel::FromVectorIcon(*model.vector_icon(), model.color(),
size);
}
#if !BUILDFLAG(IS_ANDROID)
gfx::ImageSkia GetAvatarWithDottedRing(
const ui::ImageModel& image,
int size,
bool has_padding,
bool has_background,
const ui::ColorProvider& color_provider) {
DCHECK(!image.IsEmpty());
const AvatarWithDottedRingParams& params =
has_padding ? kAvatarWithDottedRingParamsWithPadding
: kAvatarWithDottedRingParamsNoPadding;
const int avatar_padding = std::nearbyint(params.image_padding * size);
const int avatar_ring_radius =
std::nearbyint(params.dotted_ring_radius * size);
const int avatar_size = size - 2 * avatar_padding;
const float avatar_ring_stroke = params.ring_stroke_width * size;
// Shrink the avatar to fit inside the dotted ring.
gfx::ImageSkia sized_avatar_image =
GetSizedAvatarImageModel(image, avatar_size).Rasterize(&color_provider);
// Crop to a circle.
sized_avatar_image = CircleImageSource::CropCircle(sized_avatar_image);
// Add padding.
gfx::ImageSkia padded_image = gfx::CanvasImageSource::CreatePadded(
sized_avatar_image, gfx::Insets(avatar_padding));
// Add background color.
if (has_background) {
padded_image = AddBackgroundToImage(
padded_image, color_provider.GetColor(ui::kColorBubbleBackground));
}
// Add dotted ring.
return gfx::ImageSkia(
std::make_unique<ImageWithDottedCircleSource>(
padded_image, avatar_ring_radius, avatar_ring_stroke,
color_provider.GetColor(ui::kColorSysStateInactiveRing)),
gfx::Size(size, size));
}
#endif // !BUILDFLAG(IS_ANDROID)
gfx::Image GetAvatarIconForWebUI(const gfx::Image& image) {
return GetSizedAvatarIcon(image, kAvatarIconSize, kAvatarIconSize);
}
gfx::Image GetAvatarIconForTitleBar(const gfx::Image& image,
int dst_width,
int dst_height) {
// The image requires no border or resizing.
if (image.Height() <= kAvatarIconSize)
return image;
int size = std::min({kAvatarIconSize, dst_width, dst_height});
gfx::Size dst_size(dst_width, dst_height);
// Source for a sized icon drawn at the bottom center of the canvas,
// with an etched border (for GAIA images).
std::unique_ptr<gfx::ImageSkiaSource> source(
new AvatarImageSource(*image.ToImageSkia(), dst_size, size,
AvatarImageSource::POSITION_BOTTOM_CENTER));
return gfx::Image(gfx::ImageSkia(std::move(source), dst_size));
}
#if BUILDFLAG(IS_MAC)
gfx::Image GetAvatarIconForNSMenu(const base::FilePath& profile_path) {
ProfileAttributesEntry* entry =
g_browser_process->profile_manager()
->GetProfileAttributesStorage()
.GetProfileAttributesWithPath(profile_path);
if (!entry) {
// This can happen if the user deletes the current profile.
return gfx::Image();
}
PlaceholderAvatarIconParams icon_params =
GetPlaceholderAvatarIconParamsVisibleAgainstColor(
ui::NativeTheme::GetInstanceForNativeUi()->ShouldUseDarkColors()
? SK_ColorBLACK
: SK_ColorWHITE);
// Get a higher res than 16px so it looks good after cropping to a circle.
gfx::Image icon = entry->GetAvatarIcon(
kAvatarIconSize, /*download_high_res=*/false, icon_params);
constexpr int kMenuAvatarIconSizeForNSMenu = 20;
return profiles::GetSizedAvatarIcon(icon, kMenuAvatarIconSizeForNSMenu,
kMenuAvatarIconSizeForNSMenu,
profiles::SHAPE_CIRCLE);
}
#endif
// Helper methods for accessing, transforming and drawing avatar icons.
size_t GetDefaultAvatarIconCount() {
return kDefaultAvatarIconsCount;
}
size_t GetGenericAvatarIconCount() {
return kGenericAvatarIconsCount;
}
size_t GetPlaceholderAvatarIndex() {
return kPlaceholderAvatarIndex;
}
size_t GetModernAvatarIconStartIndex() {
#if !BUILDFLAG(IS_CHROMEOS) && !BUILDFLAG(IS_ANDROID)
return GetPlaceholderAvatarIndex() + 1;
#else
// Only use the placeholder avatar on ChromeOS and Android.
// TODO(crbug.com/41444689): Clean up code and remove code dependencies from
// Android and ChromeOS. Avatar icons from this file are not used on these
// platforms.
return GetPlaceholderAvatarIndex();
#endif
}
bool IsModernAvatarIconIndex(size_t icon_index) {
return icon_index >= GetModernAvatarIconStartIndex() &&
icon_index < GetDefaultAvatarIconCount();
}
int GetPlaceholderAvatarIconResourceID() {
// TODO(crbug.com/40138086): Replace with the new icon. Consider coloring the
// icon (i.e. providing the image through
// ProfileAttributesEntry::GetAvatarIcon(), instead) which would require more
// refactoring.
return IDR_PROFILE_AVATAR_PLACEHOLDER_LARGE;
}
std::string GetPlaceholderAvatarIconUrl() {
// TODO(crbug.com/40138086): Replace with the new icon. Consider coloring the
// icon (i.e. providing the image through
// ProfileAttributesEntry::GetAvatarIcon(), instead) which would require more
// refactoring.
return "chrome://theme/IDR_PROFILE_AVATAR_PLACEHOLDER_LARGE";
}
const IconResourceInfo* GetDefaultAvatarIconResourceInfo(size_t index) {
CHECK_LT(index, kDefaultAvatarIconsCount);
static const std::array<IconResourceInfo, kDefaultAvatarIconsCount>
resource_info = {{
// Old avatar icons:
#if !BUILDFLAG(IS_ANDROID)
{IDR_PROFILE_AVATAR_0, "avatar_generic.png",
IDS_DEFAULT_AVATAR_LABEL_0},
{IDR_PROFILE_AVATAR_1, "avatar_generic_aqua.png",
IDS_DEFAULT_AVATAR_LABEL_1},
{IDR_PROFILE_AVATAR_2, "avatar_generic_blue.png",
IDS_DEFAULT_AVATAR_LABEL_2},
{IDR_PROFILE_AVATAR_3, "avatar_generic_green.png",
IDS_DEFAULT_AVATAR_LABEL_3},
{IDR_PROFILE_AVATAR_4, "avatar_generic_orange.png",
IDS_DEFAULT_AVATAR_LABEL_4},
{IDR_PROFILE_AVATAR_5, "avatar_generic_purple.png",
IDS_DEFAULT_AVATAR_LABEL_5},
{IDR_PROFILE_AVATAR_6, "avatar_generic_red.png",
IDS_DEFAULT_AVATAR_LABEL_6},
{IDR_PROFILE_AVATAR_7, "avatar_generic_yellow.png",
IDS_DEFAULT_AVATAR_LABEL_7},
{IDR_PROFILE_AVATAR_8, "avatar_secret_agent.png",
IDS_DEFAULT_AVATAR_LABEL_8},
{IDR_PROFILE_AVATAR_9, "avatar_superhero.png",
IDS_DEFAULT_AVATAR_LABEL_9},
{IDR_PROFILE_AVATAR_10, "avatar_volley_ball.png",
IDS_DEFAULT_AVATAR_LABEL_10},
{IDR_PROFILE_AVATAR_11, "avatar_businessman.png",
IDS_DEFAULT_AVATAR_LABEL_11},
{IDR_PROFILE_AVATAR_12, "avatar_ninja.png",
IDS_DEFAULT_AVATAR_LABEL_12},
{IDR_PROFILE_AVATAR_13, "avatar_alien.png",
IDS_DEFAULT_AVATAR_LABEL_13},
{IDR_PROFILE_AVATAR_14, "avatar_awesome.png",
IDS_DEFAULT_AVATAR_LABEL_14},
{IDR_PROFILE_AVATAR_15, "avatar_flower.png",
IDS_DEFAULT_AVATAR_LABEL_15},
{IDR_PROFILE_AVATAR_16, "avatar_pizza.png",
IDS_DEFAULT_AVATAR_LABEL_16},
{IDR_PROFILE_AVATAR_17, "avatar_soccer.png",
IDS_DEFAULT_AVATAR_LABEL_17},
{IDR_PROFILE_AVATAR_18, "avatar_burger.png",
IDS_DEFAULT_AVATAR_LABEL_18},
{IDR_PROFILE_AVATAR_19, "avatar_cat.png",
IDS_DEFAULT_AVATAR_LABEL_19},
{IDR_PROFILE_AVATAR_20, "avatar_cupcake.png",
IDS_DEFAULT_AVATAR_LABEL_20},
{IDR_PROFILE_AVATAR_21, "avatar_dog.png",
IDS_DEFAULT_AVATAR_LABEL_21},
{IDR_PROFILE_AVATAR_22, "avatar_horse.png",
IDS_DEFAULT_AVATAR_LABEL_22},
{IDR_PROFILE_AVATAR_23, "avatar_margarita.png",
IDS_DEFAULT_AVATAR_LABEL_23},
{IDR_PROFILE_AVATAR_24, "avatar_note.png",
IDS_DEFAULT_AVATAR_LABEL_24},
{IDR_PROFILE_AVATAR_25, "avatar_sun_cloud.png",
IDS_DEFAULT_AVATAR_LABEL_25},
#endif
// Placeholder avatar icon:
{IDR_PROFILE_AVATAR_26, nullptr, IDS_DEFAULT_AVATAR_LABEL_26},
#if !BUILDFLAG(IS_CHROMEOS) && !BUILDFLAG(IS_ANDROID)
// Modern avatar icons:
{IDR_PROFILE_AVATAR_27, "avatar_origami_cat.png",
IDS_DEFAULT_AVATAR_LABEL_27},
{IDR_PROFILE_AVATAR_28, "avatar_origami_corgi.png",
IDS_DEFAULT_AVATAR_LABEL_28},
{IDR_PROFILE_AVATAR_29, "avatar_origami_dragon.png",
IDS_DEFAULT_AVATAR_LABEL_29},
{IDR_PROFILE_AVATAR_30, "avatar_origami_elephant.png",
IDS_DEFAULT_AVATAR_LABEL_30},
{IDR_PROFILE_AVATAR_31, "avatar_origami_fox.png",
IDS_DEFAULT_AVATAR_LABEL_31},
{IDR_PROFILE_AVATAR_32, "avatar_origami_monkey.png",
IDS_DEFAULT_AVATAR_LABEL_32},
{IDR_PROFILE_AVATAR_33, "avatar_origami_panda.png",
IDS_DEFAULT_AVATAR_LABEL_33},
{IDR_PROFILE_AVATAR_34, "avatar_origami_penguin.png",
IDS_DEFAULT_AVATAR_LABEL_34},
{IDR_PROFILE_AVATAR_35, "avatar_origami_pinkbutterfly.png",
IDS_DEFAULT_AVATAR_LABEL_35},
{IDR_PROFILE_AVATAR_36, "avatar_origami_rabbit.png",
IDS_DEFAULT_AVATAR_LABEL_36},
{IDR_PROFILE_AVATAR_37, "avatar_origami_unicorn.png",
IDS_DEFAULT_AVATAR_LABEL_37},
{IDR_PROFILE_AVATAR_38, "avatar_illustration_basketball.png",
IDS_DEFAULT_AVATAR_LABEL_38},
{IDR_PROFILE_AVATAR_39, "avatar_illustration_bike.png",
IDS_DEFAULT_AVATAR_LABEL_39},
{IDR_PROFILE_AVATAR_40, "avatar_illustration_bird.png",
IDS_DEFAULT_AVATAR_LABEL_40},
{IDR_PROFILE_AVATAR_41, "avatar_illustration_cheese.png",
IDS_DEFAULT_AVATAR_LABEL_41},
{IDR_PROFILE_AVATAR_42, "avatar_illustration_football.png",
IDS_DEFAULT_AVATAR_LABEL_42},
{IDR_PROFILE_AVATAR_43, "avatar_illustration_ramen.png",
IDS_DEFAULT_AVATAR_LABEL_43},
{IDR_PROFILE_AVATAR_44, "avatar_illustration_sunglasses.png",
IDS_DEFAULT_AVATAR_LABEL_44},
{IDR_PROFILE_AVATAR_45, "avatar_illustration_sushi.png",
IDS_DEFAULT_AVATAR_LABEL_45},
{IDR_PROFILE_AVATAR_46, "avatar_illustration_tamagotchi.png",
IDS_DEFAULT_AVATAR_LABEL_46},
{IDR_PROFILE_AVATAR_47, "avatar_illustration_vinyl.png",
IDS_DEFAULT_AVATAR_LABEL_47},
{IDR_PROFILE_AVATAR_48, "avatar_abstract_avocado.png",
IDS_DEFAULT_AVATAR_LABEL_48},
{IDR_PROFILE_AVATAR_49, "avatar_abstract_cappuccino.png",
IDS_DEFAULT_AVATAR_LABEL_49},
{IDR_PROFILE_AVATAR_50, "avatar_abstract_icecream.png",
IDS_DEFAULT_AVATAR_LABEL_50},
{IDR_PROFILE_AVATAR_51, "avatar_abstract_icewater.png",
IDS_DEFAULT_AVATAR_LABEL_51},
{IDR_PROFILE_AVATAR_52, "avatar_abstract_melon.png",
IDS_DEFAULT_AVATAR_LABEL_52},
{IDR_PROFILE_AVATAR_53, "avatar_abstract_onigiri.png",
IDS_DEFAULT_AVATAR_LABEL_53},
{IDR_PROFILE_AVATAR_54, "avatar_abstract_pizza.png",
IDS_DEFAULT_AVATAR_LABEL_54},
{IDR_PROFILE_AVATAR_55, "avatar_abstract_sandwich.png",
IDS_DEFAULT_AVATAR_LABEL_55},
#endif
}};
return &resource_info[index];
}
gfx::Image GetPlaceholderAvatarIconVisibleAgainstBackground(
SkColor profile_color_seed,
int size,
AvatarVisibilityAgainstBackground visibility) {
const gfx::VectorIcon& person_icon =
vector_icons::kAccountCircleChromeRefreshIcon;
// The palette is generated using the user color, which is independent of the
// profile's light or dark theme.
const ui::TonalPalette color_palette =
ui::GeneratePalette(profile_color_seed,
ui::ColorProviderKey::SchemeVariant::kTonalSpot)
->primary();
const SkColor visible_stroke_color =
visibility == AvatarVisibilityAgainstBackground::kVisibleAgainstDarkTheme
? color_palette.get(kIconToneLight)
: color_palette.get(kIconToneDark);
const gfx::ImageSkia icon_without_background = gfx::CreateVectorIcon(
gfx::IconDescription(person_icon, size, visible_stroke_color));
return gfx::Image(icon_without_background);
}
gfx::Image GetPlaceholderAvatarIconWithColors(
SkColor fill_color,
SkColor stroke_color,
int size,
const PlaceholderAvatarIconParams& icon_params) {
// If the icon should be an outline icon visible against the background, use
// `GetPlaceholderAvatarIconVisibleAgainstBackground()` instead.
CHECK(!icon_params.visibility_against_background.has_value());
const gfx::VectorIcon& person_icon =
vector_icons::kAccountCircleChromeRefreshIcon;
const gfx::ImageSkia avatar_icon_without_background =
icon_params.has_padding
? CreatePaddedIcon(person_icon, size, stroke_color, 0.5f)
: gfx::CreateVectorIcon(
gfx::IconDescription(person_icon, size, stroke_color));
if (icon_params.has_background) {
return gfx::Image(
AddBackgroundToImage(avatar_icon_without_background, fill_color));
} else {
return gfx::Image(avatar_icon_without_background);
}
}
int GetDefaultAvatarIconResourceIDAtIndex(size_t index) {
return GetDefaultAvatarIconResourceInfo(index)->resource_id;
}
#if BUILDFLAG(IS_WIN)
int GetOldDefaultAvatar2xIconResourceIDAtIndex(size_t index) {
return kProfileAvatarIconResources2x[index];
}
#endif // BUILDFLAG(IS_WIN)
const char* GetDefaultAvatarIconFileNameAtIndex(size_t index) {
CHECK_NE(index, kPlaceholderAvatarIndex);
return GetDefaultAvatarIconResourceInfo(index)->filename;
}
base::FilePath GetPathOfHighResAvatarAtIndex(size_t index) {
const char* file_name = GetDefaultAvatarIconFileNameAtIndex(index);
base::FilePath user_data_dir;
CHECK(base::PathService::Get(chrome::DIR_USER_DATA, &user_data_dir));
return user_data_dir.Append(kHighResAvatarFolderName).AppendASCII(file_name);
}
std::string GetDefaultAvatarIconUrl(size_t index) {
#if !BUILDFLAG(IS_ANDROID)
CHECK(IsDefaultAvatarIconIndex(index));
#endif
return base::StringPrintf("%s%" PRIuS, kDefaultUrlPrefix, index);
}
int GetDefaultAvatarLabelResourceIDAtIndex(size_t index) {
return GetDefaultAvatarIconResourceInfo(index)->label_id;
}
bool IsDefaultAvatarIconIndex(size_t index) {
return index < kDefaultAvatarIconsCount;
}
bool IsDefaultAvatarIconUrl(std::string_view url, size_t* icon_index) {
DCHECK(icon_index);
if (!base::StartsWith(url, kDefaultUrlPrefix, base::CompareCase::SENSITIVE))
return false;
int int_value = -1;
if (base::StringToInt(url.substr(kDefaultUrlPrefix.size()), &int_value)) {
if (int_value < 0 ||
int_value >= static_cast<int>(kDefaultAvatarIconsCount))
return false;
*icon_index = int_value;
return true;
}
return false;
}
base::Value::Dict GetAvatarIconAndLabelDict(const std::string& url,
const std::u16string& label,
size_t index,
bool selected,
bool is_gaia_avatar) {
base::Value::Dict avatar_info;
avatar_info.Set("url", url);
avatar_info.Set("label", label);
avatar_info.Set("index", static_cast<int>(index));
avatar_info.Set("selected", selected);
avatar_info.Set("isGaiaAvatar", is_gaia_avatar);
return avatar_info;
}
base::Value::Dict GetDefaultProfileAvatarIconAndLabel(SkColor fill_color,
SkColor stroke_color,
bool selected) {
gfx::Image icon = profiles::GetPlaceholderAvatarIconWithColors(
fill_color, stroke_color, kAvatarIconSize);
size_t index = profiles::GetPlaceholderAvatarIndex();
return GetAvatarIconAndLabelDict(
webui::GetBitmapDataUrl(icon.AsBitmap()),
l10n_util::GetStringUTF16(
profiles::GetDefaultAvatarLabelResourceIDAtIndex(index)),
index, selected, /*is_gaia_avatar=*/false);
}
base::Value::List GetCustomProfileAvatarIconsAndLabels(
size_t selected_avatar_idx) {
base::Value::List avatars;
for (size_t i = GetModernAvatarIconStartIndex();
i < GetDefaultAvatarIconCount(); ++i) {
avatars.Append(GetAvatarIconAndLabelDict(
profiles::GetDefaultAvatarIconUrl(i),
l10n_util::GetStringUTF16(
profiles::GetDefaultAvatarLabelResourceIDAtIndex(i)),
i, i == selected_avatar_idx, /*is_gaia_avatar=*/false));
}
return avatars;
}
size_t GetRandomAvatarIconIndex(
const std::unordered_set<size_t>& used_icon_indices) {
size_t interval_begin = GetModernAvatarIconStartIndex();
size_t interval_end = GetDefaultAvatarIconCount();
size_t interval_length = interval_end - interval_begin;
size_t random_offset = base::RandInt(0, interval_length - 1);
// Find the next unused index.
for (size_t i = 0; i < interval_length; ++i) {
size_t icon_index = interval_begin + (random_offset + i) % interval_length;
if (used_icon_indices.count(icon_index) == 0u)
return icon_index;
}
// All indices are used, so return a random one.
return interval_begin + random_offset;
}
#if !BUILDFLAG(IS_ANDROID)
base::Value::List GetIconsAndLabelsForProfileAvatarSelector(
const base::FilePath& profile_path) {
ProfileAttributesEntry* entry =
g_browser_process->profile_manager()
->GetProfileAttributesStorage()
.GetProfileAttributesWithPath(profile_path);
DCHECK(entry);
bool using_gaia = entry->IsUsingGAIAPicture();
size_t selected_avatar_idx =
using_gaia ? SIZE_MAX : entry->GetAvatarIconIndex();
// Obtain a list of the modern avatar icons.
base::Value::List avatars(
GetCustomProfileAvatarIconsAndLabels(selected_avatar_idx));
if (entry->GetSigninState() == SigninState::kNotSignedIn) {
ProfileThemeColors colors = entry->GetProfileThemeColors();
auto generic_avatar_info = GetDefaultProfileAvatarIconAndLabel(
colors.default_avatar_fill_color, colors.default_avatar_stroke_color,
selected_avatar_idx == GetPlaceholderAvatarIndex());
avatars.Insert(avatars.begin(),
base::Value(std::move(generic_avatar_info)));
return avatars;
}
// Add the GAIA picture to the beginning of the list if it is available.
const gfx::Image* icon = entry->GetGAIAPicture();
if (icon) {
gfx::Image avatar_icon = GetAvatarIconForWebUI(*icon);
auto gaia_picture_info = GetAvatarIconAndLabelDict(
/*url=*/webui::GetBitmapDataUrl(avatar_icon.AsBitmap()),
/*label=*/
l10n_util::GetStringUTF16(IDS_SETTINGS_CHANGE_PICTURE_PROFILE_PHOTO),
/*index=*/0, using_gaia, /*is_gaia_avatar=*/true);
avatars.Insert(avatars.begin(), base::Value(std::move(gaia_picture_info)));
}
return avatars;
}
#endif // !BUILDFLAG(IS_ANDROID)
void SetDefaultProfileAvatarIndex(Profile* profile, size_t avatar_icon_index) {
CHECK(IsDefaultAvatarIconIndex(avatar_icon_index));
PrefService* pref_service = profile->GetPrefs();
pref_service->SetInteger(prefs::kProfileAvatarIndex, avatar_icon_index);
pref_service->SetBoolean(prefs::kProfileUsingDefaultAvatar,
avatar_icon_index == GetPlaceholderAvatarIndex());
pref_service->SetBoolean(prefs::kProfileUsingGAIAAvatar, false);
ProfileMetrics::LogProfileAvatarSelection(avatar_icon_index);
}
#if BUILDFLAG(IS_WIN)
SkBitmap GetWin2xAvatarImage(ProfileAttributesEntry* entry) {
// Request just one size large enough for all uses.
return GetSkBitmapCopy(
entry->GetAvatarIcon(IconUtil::kLargeIconSize, /*use_high_res_file=*/true,
/*icon_params=*/{.has_padding = false}));
}
SkBitmap GetWin2xAvatarIconAsSquare(const SkBitmap& source_bitmap) {
constexpr int kIconScaleFactor = 2;
if ((source_bitmap.width() != kIconScaleFactor * kOldAvatarIconWidth) ||
(source_bitmap.height() != kIconScaleFactor * kOldAvatarIconHeight)) {
// It's not an old avatar icon, the image should be square.
DCHECK_EQ(source_bitmap.width(), source_bitmap.height());
return source_bitmap;
}
// If |source_bitmap| matches the old avatar icon dimensions, i.e. it's an
// old avatar icon, shave a couple of columns so the |source_bitmap| is more
// square. So when resized to a square aspect ratio it looks pretty.
gfx::Rect frame(gfx::SkIRectToRect(source_bitmap.bounds()));
frame.Inset(
gfx::Insets::VH(/*vertical=*/0, /*horizontal=*/kIconScaleFactor * 2));
SkBitmap cropped_bitmap;
source_bitmap.extractSubset(&cropped_bitmap, gfx::RectToSkIRect(frame));
return cropped_bitmap;
}
SkBitmap GetBadgedWinIconBitmapForAvatar(const SkBitmap& app_icon_bitmap,
const SkBitmap& avatar_bitmap) {
// TODO(dfried): This function often doesn't actually do the thing it claims
// to. We should probably fix it.
SkBitmap source_bitmap = profiles::GetWin2xAvatarIconAsSquare(avatar_bitmap);
int avatar_badge_width = kProfileAvatarBadgeSizeWin;
if (app_icon_bitmap.width() != kShortcutIconSizeWin) {
avatar_badge_width = std::ceilf(
app_icon_bitmap.width() *
(float{kProfileAvatarBadgeSizeWin} / float{kShortcutIconSizeWin}));
}
// Resize the avatar image down to the desired badge size, maintaining aspect
// ratio (but prefer more square than rectangular when rounding).
const int avatar_badge_height = base::ClampCeil(
avatar_badge_width *
(static_cast<float>(source_bitmap.height()) / source_bitmap.width()));
SkBitmap sk_icon = skia::ImageOperations::Resize(
source_bitmap, skia::ImageOperations::RESIZE_LANCZOS3,
avatar_badge_width, avatar_badge_height);
// Sanity check - avatars shouldn't be taller than they are wide.
DCHECK_GE(sk_icon.width(), sk_icon.height());
// Overlay the avatar on the icon, anchoring it to the bottom-right of the
// icon on Win 10 and earlier, and the top right on Win 11. Win 11 moved the
// taskbar icon badge to the top right from the bottom right, so profile
// badging needs to move as well, to avoid double badging.
SkBitmap badged_bitmap;
badged_bitmap.allocN32Pixels(app_icon_bitmap.width(),
app_icon_bitmap.height());
SkCanvas offscreen_canvas(badged_bitmap, SkSurfaceProps{});
offscreen_canvas.clear(SK_ColorTRANSPARENT);
offscreen_canvas.drawImage(app_icon_bitmap.asImage(), 0, 0);
// Render the avatar in a cutout circle. If the avatar is not square, center
// it in the circle but favor pushing it further down.
const int cutout_size = avatar_badge_width;
const int cutout_left = app_icon_bitmap.width() - cutout_size;
const int cutout_top = base::win::GetVersion() >= base::win::Version::WIN11
? 0
: app_icon_bitmap.height() - cutout_size;
const int icon_left = cutout_left;
const int icon_top =
cutout_top + base::ClampCeil((cutout_size - avatar_badge_height) / 2.0f);
const SkRRect clip_circle = SkRRect::MakeOval(
SkRect::MakeXYWH(cutout_left, cutout_top, cutout_size, cutout_size));
offscreen_canvas.clipRRect(clip_circle, true);
offscreen_canvas.drawImage(sk_icon.asImage(), icon_left, icon_top);
return badged_bitmap;
}
#endif // BUILDFLAG(IS_WIN)
gfx::ImageSkia AddBackgroundToImage(const gfx::ImageSkia& image,
SkColor background_color) {
return gfx::ImageSkia(
std::make_unique<ImageWithBackgroundSource>(image, background_color),
image.size());
}
} // namespace profiles
|