#include "ui/gfx/icon_util.h"
#include "base/check_op.h"
#include "base/files/file_util.h"
#include "base/files/important_file_writer.h"
#include "base/memory/ref_counted_memory.h"
#include "base/notreached.h"
#include "base/scoped_generic.h"
#include "base/trace_event/trace_event.h"
#include "base/win/resource_util.h"
#include "base/win/scoped_gdi_object.h"
#include "base/win/scoped_handle.h"
#include "base/win/scoped_hdc.h"
#include "skia/ext/image_operations.h"
#include "skia/ext/skia_utils_win.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/image/image.h"
#include "ui/gfx/image/image_family.h"
#include "ui/gfx/skbitmap_operations.h"
namespace {
const int kResourceTypeIcon = 1;
struct ScopedICONINFO : ICONINFO {
ScopedICONINFO() {
hbmColor = nullptr;
hbmMask = nullptr;
}
ScopedICONINFO(const ScopedICONINFO&) = delete;
ScopedICONINFO& operator=(const ScopedICONINFO&) = delete;
~ScopedICONINFO() {
if (hbmColor)
::DeleteObject(hbmColor);
if (hbmMask)
::DeleteObject(hbmMask);
}
};
bool BuildResizedImageFamily(const gfx::ImageFamily& image_family,
gfx::ImageFamily* resized_image_family) {
DCHECK(resized_image_family);
DCHECK(resized_image_family->empty());
const gfx::Image* biggest =
image_family.GetBest(IconUtil::kLargeIconSize, IconUtil::kLargeIconSize);
if (!biggest || biggest->IsEmpty()) {
return false;
}
bool has_bigger_than_medium = biggest->Width() > IconUtil::kMediumIconSize ||
biggest->Height() > IconUtil::kMediumIconSize;
for (size_t i = 0; i < IconUtil::kNumIconDimensions; ++i) {
int dimension = IconUtil::kIconDimensions[i];
if (!has_bigger_than_medium && dimension > IconUtil::kMediumIconSize)
break;
gfx::Image resized = image_family.CreateExact(dimension, dimension);
if (resized.IsEmpty()) {
return false;
}
resized_image_family->Add(resized);
}
return true;
}
void ConvertImageFamilyToBitmaps(
const gfx::ImageFamily& image_family,
std::vector<SkBitmap>* bitmaps,
scoped_refptr<base::RefCountedMemory>* png_bytes) {
DCHECK(bitmaps);
DCHECK(bitmaps->empty());
for (gfx::ImageFamily::const_iterator it = image_family.begin();
it != image_family.end(); ++it) {
const gfx::Image& image = *it;
DCHECK_GT(image.Width(), 0);
DCHECK_LE(image.Width(), IconUtil::kLargeIconSize);
DCHECK_GT(image.Height(), 0);
DCHECK_LE(image.Height(), IconUtil::kLargeIconSize);
SkBitmap bitmap = image.AsBitmap();
CHECK_EQ(bitmap.colorType(), kN32_SkColorType);
CHECK(!bitmap.isNull());
if (image.Width() == IconUtil::kLargeIconSize &&
image.Height() == IconUtil::kLargeIconSize) {
*png_bytes = image.As1xPNGBytes();
} else {
bitmaps->push_back(bitmap);
}
}
}
}
const int IconUtil::kIconDimensions[] = {
8,
10,
14,
16,
22,
24,
32,
40,
48,
64,
96,
128,
256
};
const size_t IconUtil::kNumIconDimensions = std::size(kIconDimensions);
const size_t IconUtil::kNumIconDimensionsUpToMediumSize = 9;
base::win::ScopedHICON IconUtil::CreateHICONFromSkBitmap(
const SkBitmap& bitmap) {
if ((bitmap.colorType() != kN32_SkColorType) || (bitmap.width() <= 0) ||
(bitmap.height() <= 0) || (bitmap.getPixels() == nullptr))
return base::win::ScopedHICON();
BITMAPV5HEADER bitmap_header;
InitializeBitmapHeader(&bitmap_header, bitmap.width(), bitmap.height());
void* bits = nullptr;
base::win::ScopedBitmap dib;
{
base::win::ScopedGetDC hdc(nullptr);
dib = base::win::ScopedBitmap(
::CreateDIBSection(hdc, reinterpret_cast<BITMAPINFO*>(&bitmap_header),
DIB_RGB_COLORS, &bits, nullptr, 0));
}
if (!dib.is_valid() || !bits)
return base::win::ScopedHICON();
memcpy(bits, bitmap.getPixels(), bitmap.width() * bitmap.height() * 4);
bool bitmap_has_alpha_channel =
PixelsHaveAlpha(static_cast<const uint32_t*>(bitmap.getPixels()),
bitmap.width() * bitmap.height());
std::unique_ptr<uint8_t[]> mask_bits;
if (!bitmap_has_alpha_channel) {
size_t bytes_per_line = (bitmap.width() + 0xF) / 16 * 2;
size_t mask_bits_size = bytes_per_line * bitmap.height();
mask_bits = std::make_unique<uint8_t[]>(mask_bits_size);
DCHECK(mask_bits.get());
memset(mask_bits.get(), 0xFF, mask_bits_size);
}
base::win::ScopedBitmap mono_bitmap(
::CreateBitmap(bitmap.width(), bitmap.height(), 1, 1, mask_bits.get()));
DCHECK(mono_bitmap.is_valid());
ICONINFO icon_info;
icon_info.fIcon = TRUE;
icon_info.xHotspot = 0;
icon_info.yHotspot = 0;
icon_info.hbmMask = mono_bitmap.get();
icon_info.hbmColor = dib.get();
base::win::ScopedHICON icon(CreateIconIndirect(&icon_info));
return icon;
}
SkBitmap IconUtil::CreateSkBitmapFromHICON(HICON icon, const gfx::Size& s) {
if (!icon || s.IsEmpty())
return SkBitmap();
ScopedICONINFO icon_info;
if (!::GetIconInfo(icon, &icon_info))
return SkBitmap();
if (!icon_info.fIcon)
return SkBitmap();
return CreateSkBitmapFromHICONHelper(icon, s);
}
std::unique_ptr<gfx::ImageFamily> IconUtil::CreateImageFamilyFromIconResource(
HMODULE module,
int resource_id) {
void* icon_dir_data = nullptr;
size_t icon_dir_size = 0;
if (!base::win::GetResourceFromModule(module, resource_id, RT_GROUP_ICON,
&icon_dir_data, &icon_dir_size)) {
return nullptr;
}
DCHECK(icon_dir_data);
DCHECK_GE(icon_dir_size, sizeof(GRPICONDIR));
const GRPICONDIR* icon_dir =
reinterpret_cast<const GRPICONDIR*>(icon_dir_data);
std::unique_ptr<gfx::ImageFamily> result(new gfx::ImageFamily);
for (size_t i = 0; i < icon_dir->idCount; ++i) {
const GRPICONDIRENTRY* entry = &icon_dir->idEntries[i];
if (entry->bWidth != 0 || entry->bHeight != 0) {
if (entry->wBitCount != 32)
continue;
base::win::ScopedHICON icon_handle(static_cast<HICON>(LoadImage(
module, MAKEINTRESOURCE(resource_id), IMAGE_ICON, entry->bWidth,
entry->bHeight, LR_DEFAULTCOLOR | LR_DEFAULTSIZE)));
result->Add(gfx::Image::CreateFrom1xBitmap(
IconUtil::CreateSkBitmapFromHICON(icon_handle.get())));
} else {
void* png_data = nullptr;
size_t png_size = 0;
if (!base::win::GetResourceFromModule(module, entry->nID, RT_ICON,
&png_data, &png_size)) {
return nullptr;
}
DCHECK(png_data);
DCHECK_EQ(png_size, entry->dwBytesInRes);
result->Add(gfx::Image::CreateFrom1xPNGBytes(
new base::RefCountedStaticMemory(png_data, png_size)));
}
}
return result;
}
SkBitmap IconUtil::CreateSkBitmapFromHICON(HICON icon) {
if (!icon)
return SkBitmap();
ScopedICONINFO icon_info;
BITMAP bitmap_info = { 0 };
if (!::GetIconInfo(icon, &icon_info))
return SkBitmap();
if (!::GetObject(icon_info.hbmMask, sizeof(bitmap_info), &bitmap_info))
return SkBitmap();
const int height = bitmap_info.bmHeight / (icon_info.hbmColor ? 1 : 2);
gfx::Size icon_size(bitmap_info.bmWidth, height);
return CreateSkBitmapFromHICONHelper(icon, icon_size);
}
base::win::ScopedHICON IconUtil::CreateCursorFromSkBitmap(
const SkBitmap& bitmap,
const gfx::Point& hotspot) {
if (bitmap.empty())
return base::win::ScopedHICON();
if (bitmap.colorType() != kN32_SkColorType) {
NOTIMPLEMENTED() << " unsupported color type: " << bitmap.colorType();
return base::win::ScopedHICON();
}
BITMAPINFO icon_bitmap_info = {};
skia::CreateBitmapHeaderForN32SkBitmap(
bitmap, reinterpret_cast<BITMAPINFOHEADER*>(&icon_bitmap_info));
base::win::ScopedCreateDC working_dc;
base::win::ScopedBitmap bitmap_handle;
{
base::win::ScopedGetDC dc(nullptr);
working_dc = base::win::ScopedCreateDC(CreateCompatibleDC(dc));
bitmap_handle = base::win::ScopedBitmap(
CreateDIBSection(dc, &icon_bitmap_info, DIB_RGB_COLORS, 0, 0, 0));
}
SetDIBits(0, bitmap_handle.get(), 0, bitmap.height(), bitmap.getPixels(),
&icon_bitmap_info, DIB_RGB_COLORS);
HBITMAP old_bitmap = reinterpret_cast<HBITMAP>(
SelectObject(working_dc.Get(), bitmap_handle.get()));
SetBkMode(working_dc.Get(), TRANSPARENT);
SelectObject(working_dc.Get(), old_bitmap);
base::win::ScopedBitmap mask(
CreateBitmap(bitmap.width(), bitmap.height(), 1, 1, nullptr));
ICONINFO ii = {0};
ii.fIcon = FALSE;
ii.xHotspot = hotspot.x();
ii.yHotspot = hotspot.y();
ii.hbmMask = mask.get();
ii.hbmColor = bitmap_handle.get();
return base::win::ScopedHICON(CreateIconIndirect(&ii));
}
gfx::Point IconUtil::GetHotSpotFromHICON(HICON icon) {
ScopedICONINFO icon_info;
gfx::Point hotspot;
if (::GetIconInfo(icon, &icon_info))
hotspot = gfx::Point(icon_info.xHotspot, icon_info.yHotspot);
return hotspot;
}
SkBitmap IconUtil::CreateSkBitmapFromHICONHelper(HICON icon,
const gfx::Size& s) {
DCHECK(icon);
DCHECK(!s.IsEmpty());
SkBitmap bitmap;
bitmap.allocN32Pixels(s.width(), s.height());
bitmap.eraseARGB(0, 0, 0, 0);
BITMAPV5HEADER h;
InitializeBitmapHeader(&h, s.width(), s.height());
void* bits;
base::win::ScopedBitmap dib;
base::win::ScopedCreateDC dib_dc;
{
base::win::ScopedGetDC hdc(nullptr);
dib = base::win::ScopedBitmap(
::CreateDIBSection(hdc, reinterpret_cast<BITMAPINFO*>(&h),
DIB_RGB_COLORS, &bits, nullptr, 0));
dib_dc = base::win::ScopedCreateDC(CreateCompatibleDC(hdc));
}
DCHECK(dib.is_valid());
DCHECK(dib_dc.IsValid());
HGDIOBJ old_obj = ::SelectObject(dib_dc.Get(), dib.get());
size_t num_pixels = s.GetArea();
memset(bits, 0, num_pixels * 4);
::DrawIconEx(dib_dc.Get(), 0, 0, icon, s.width(), s.height(), 0, nullptr,
DI_MASK);
std::unique_ptr<bool[]> opaque(new bool[num_pixels]);
for (size_t i = 0; i < num_pixels; ++i)
opaque[i] = !static_cast<uint32_t*>(bits)[i];
memset(bits, 0, num_pixels * 4);
::DrawIconEx(dib_dc.Get(), 0, 0, icon, s.width(), s.height(), 0, nullptr,
DI_NORMAL);
memcpy(bitmap.getPixels(), bits, num_pixels * 4);
bool bitmap_has_alpha_channel = PixelsHaveAlpha(
static_cast<const uint32_t*>(bitmap.getPixels()), num_pixels);
if (!bitmap_has_alpha_channel) {
uint32_t* p = static_cast<uint32_t*>(bitmap.getPixels());
for (size_t i = 0; i < num_pixels; ++p, ++i) {
DCHECK_EQ((*p & 0xff000000), 0u);
if (opaque[i])
*p |= 0xff000000;
else
*p &= 0x00ffffff;
}
}
::SelectObject(dib_dc.Get(), old_obj);
return bitmap;
}
bool IconUtil::CreateIconFileFromImageFamily(
const gfx::ImageFamily& image_family,
const base::FilePath& icon_path,
WriteType write_type) {
gfx::ImageFamily resized_image_family;
if (!BuildResizedImageFamily(image_family, &resized_image_family))
return false;
std::vector<SkBitmap> bitmaps;
scoped_refptr<base::RefCountedMemory> png_bytes;
ConvertImageFamilyToBitmaps(resized_image_family, &bitmaps, &png_bytes);
DCHECK(!bitmaps.empty());
DCHECK_LE(bitmaps.size(),
static_cast<size_t>(USHRT_MAX - (png_bytes.get() ? 1 : 0)));
WORD bitmap_count =
static_cast<WORD>(bitmaps.size());
WORD image_count = bitmap_count + (png_bytes.get() ? 1 : 0);
size_t buffer_size = ComputeIconFileBufferSize(bitmaps);
if (png_bytes.get())
buffer_size += sizeof(ICONDIRENTRY) + png_bytes->size();
std::vector<uint8_t> buffer(buffer_size);
ICONDIR* icon_dir = reinterpret_cast<ICONDIR*>(&buffer[0]);
icon_dir->idType = kResourceTypeIcon;
icon_dir->idCount = image_count;
DWORD icon_dir_count = image_count - 1;
DWORD offset = sizeof(ICONDIR) + (sizeof(ICONDIRENTRY) * icon_dir_count);
for (size_t i = 0; i < bitmap_count; i++) {
ICONIMAGE* image = reinterpret_cast<ICONIMAGE*>(&buffer[offset]);
DCHECK_LT(offset, buffer_size);
size_t icon_image_size = 0;
SetSingleIconImageInformation(bitmaps[i], i, icon_dir, image, offset,
&icon_image_size);
DCHECK_GT(icon_image_size, 0U);
offset += icon_image_size;
}
if (png_bytes.get()) {
ICONDIRENTRY* entry = &icon_dir->idEntries[bitmap_count];
entry->bWidth = 0;
entry->bHeight = 0;
entry->wPlanes = 1;
entry->wBitCount = 32;
entry->dwBytesInRes = static_cast<DWORD>(png_bytes->size());
entry->dwImageOffset = offset;
memcpy(&buffer[offset], png_bytes->front(), png_bytes->size());
offset += png_bytes->size();
}
DCHECK_EQ(offset, buffer_size);
if (write_type == NORMAL_WRITE) {
if (base::WriteFile(icon_path, buffer))
return true;
bool delete_success = base::DeleteFile(icon_path);
DCHECK(delete_success);
return false;
}
std::string data(buffer.begin(), buffer.end());
return base::ImportantFileWriter::WriteFileAtomically(icon_path, data);
}
bool IconUtil::PixelsHaveAlpha(const uint32_t* pixels, size_t num_pixels) {
for (const uint32_t* end = pixels + num_pixels; pixels != end; ++pixels) {
if ((*pixels & 0xff000000) != 0)
return true;
}
return false;
}
void IconUtil::InitializeBitmapHeader(BITMAPV5HEADER* header, int width,
int height) {
DCHECK(header);
memset(header, 0, sizeof(BITMAPV5HEADER));
header->bV5Size = sizeof(BITMAPV5HEADER);
header->bV5Width = width;
header->bV5Height = -height;
header->bV5Planes = 1;
header->bV5Compression = BI_RGB;
header->bV5BitCount = 32;
header->bV5RedMask = 0x00FF0000;
header->bV5GreenMask = 0x0000FF00;
header->bV5BlueMask = 0x000000FF;
header->bV5AlphaMask = 0xFF000000;
header->bV5CSType = LCS_WINDOWS_COLOR_SPACE;
header->bV5Intent = LCS_GM_IMAGES;
}
void IconUtil::SetSingleIconImageInformation(const SkBitmap& bitmap,
size_t index,
ICONDIR* icon_dir,
ICONIMAGE* icon_image,
DWORD image_offset,
size_t* image_byte_count) {
DCHECK(icon_dir);
DCHECK(icon_image);
DCHECK_GT(image_offset, 0U);
DCHECK(image_byte_count);
DCHECK_LT(bitmap.width(), kLargeIconSize);
DCHECK_LT(bitmap.height(), kLargeIconSize);
size_t xor_mask_size;
DWORD bytes_in_resource;
ComputeBitmapSizeComponents(bitmap,
&xor_mask_size,
&bytes_in_resource);
icon_dir->idEntries[index].bWidth = static_cast<BYTE>(bitmap.width());
icon_dir->idEntries[index].bHeight = static_cast<BYTE>(bitmap.height());
icon_dir->idEntries[index].wPlanes = 1;
icon_dir->idEntries[index].wBitCount = 32;
icon_dir->idEntries[index].dwBytesInRes = bytes_in_resource;
icon_dir->idEntries[index].dwImageOffset = image_offset;
icon_image->icHeader.biSize = sizeof(BITMAPINFOHEADER);
icon_image->icHeader.biHeight = bitmap.height() * 2;
icon_image->icHeader.biWidth = bitmap.width();
icon_image->icHeader.biPlanes = 1;
icon_image->icHeader.biBitCount = 32;
unsigned char* image_addr = reinterpret_cast<unsigned char*>(icon_image);
unsigned char* xor_mask_addr = image_addr + sizeof(BITMAPINFOHEADER);
SkBitmap unpremul_bitmap = SkBitmapOperations::UnPreMultiply(bitmap);
CopySkBitmapBitsIntoIconBuffer(unpremul_bitmap, xor_mask_addr, xor_mask_size);
*image_byte_count = bytes_in_resource;
}
void IconUtil::CopySkBitmapBitsIntoIconBuffer(const SkBitmap& bitmap,
unsigned char* buffer,
size_t buffer_size) {
unsigned char* bitmap_ptr = static_cast<unsigned char*>(bitmap.getPixels());
size_t bitmap_size = bitmap.height() * bitmap.width() * 4;
DCHECK_EQ(buffer_size, bitmap_size);
for (size_t i = 0; i < bitmap_size; i += bitmap.width() * 4) {
memcpy(buffer + bitmap_size - bitmap.width() * 4 - i,
bitmap_ptr + i,
bitmap.width() * 4);
}
}
size_t IconUtil::ComputeIconFileBufferSize(const std::vector<SkBitmap>& set) {
DCHECK(!set.empty());
size_t total_buffer_size = sizeof(ICONDIR);
size_t bitmap_count = set.size();
total_buffer_size += sizeof(ICONDIRENTRY) * (bitmap_count - 1);
DCHECK_GE(bitmap_count, kNumIconDimensionsUpToMediumSize);
for (size_t i = 0; i < bitmap_count; i++) {
size_t xor_mask_size;
DWORD bytes_in_resource;
ComputeBitmapSizeComponents(set[i],
&xor_mask_size,
&bytes_in_resource);
total_buffer_size += bytes_in_resource;
}
return total_buffer_size;
}
void IconUtil::ComputeBitmapSizeComponents(const SkBitmap& bitmap,
size_t* xor_mask_size,
DWORD* bytes_in_resource) {
*xor_mask_size = bitmap.width() * bitmap.height() * 4;
size_t and_line_length = (bitmap.width() + 7) >> 3;
and_line_length = (and_line_length + 3) & ~3;
size_t and_mask_size = and_line_length * bitmap.height();
size_t masks_size = *xor_mask_size + and_mask_size;
*bytes_in_resource =
static_cast<DWORD>(masks_size + sizeof(BITMAPINFOHEADER));
}