forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitmap_skbitmap_struct_traits.cc
143 lines (118 loc) · 4.22 KB
/
bitmap_skbitmap_struct_traits.cc
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
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "skia/public/interfaces/bitmap_skbitmap_struct_traits.h"
namespace mojo {
// static
bool StructTraits<skia::mojom::BitmapDataView, SkBitmap>::IsNull(
const SkBitmap& b) {
return b.isNull();
}
// static
void StructTraits<skia::mojom::BitmapDataView, SkBitmap>::SetToNull(
SkBitmap* b) {
b->reset();
}
// static
const SkImageInfo& StructTraits<skia::mojom::BitmapDataView,
SkBitmap>::image_info(const SkBitmap& b) {
return b.info();
}
// static
uint64_t StructTraits<skia::mojom::BitmapDataView, SkBitmap>::row_bytes(
const SkBitmap& b) {
return b.rowBytes();
}
// static
mojo_base::BigBufferView StructTraits<skia::mojom::BitmapDataView,
SkBitmap>::pixel_data(const SkBitmap& b) {
return mojo_base::BigBufferView(base::make_span(
static_cast<uint8_t*>(b.getPixels()), b.computeByteSize()));
}
// static
bool StructTraits<skia::mojom::BitmapDataView, SkBitmap>::Read(
skia::mojom::BitmapDataView data,
SkBitmap* b) {
// TODO: Ensure width and height are reasonable, eg. <= kMaxBitmapSize?
SkImageInfo image_info;
if (!data.ReadImageInfo(&image_info))
return false;
*b = SkBitmap();
if (!b->tryAllocPixels(image_info, data.row_bytes())) {
return false;
}
// If the image is empty, return success after setting the image info.
if (image_info.width() == 0 || image_info.height() == 0)
return true;
mojo_base::BigBufferView pixel_data_view;
if (!data.ReadPixelData(&pixel_data_view))
return false;
base::span<const uint8_t> pixel_data_bytes = pixel_data_view.data();
if (b->width() != image_info.width() || b->height() != image_info.height() ||
static_cast<uint64_t>(b->rowBytes()) != data.row_bytes() ||
b->computeByteSize() != pixel_data_bytes.size() || !b->readyToDraw()) {
return false;
}
std::copy(pixel_data_bytes.begin(), pixel_data_bytes.end(),
static_cast<uint8_t*>(b->getPixels()));
b->notifyPixelsChanged();
return true;
}
// static
bool StructTraits<skia::mojom::InlineBitmapDataView, SkBitmap>::IsNull(
const SkBitmap& b) {
return b.isNull();
}
// static
void StructTraits<skia::mojom::InlineBitmapDataView, SkBitmap>::SetToNull(
SkBitmap* b) {
b->reset();
}
// static
const SkImageInfo& StructTraits<skia::mojom::InlineBitmapDataView,
SkBitmap>::image_info(const SkBitmap& b) {
return StructTraits<skia::mojom::BitmapDataView, SkBitmap>::image_info(b);
}
// static
uint64_t StructTraits<skia::mojom::InlineBitmapDataView, SkBitmap>::row_bytes(
const SkBitmap& b) {
return StructTraits<skia::mojom::BitmapDataView, SkBitmap>::row_bytes(b);
}
// static
base::span<const uint8_t>
StructTraits<skia::mojom::InlineBitmapDataView, SkBitmap>::pixel_data(
const SkBitmap& b) {
return base::make_span(static_cast<uint8_t*>(b.getPixels()),
b.computeByteSize());
}
// static
bool StructTraits<skia::mojom::InlineBitmapDataView, SkBitmap>::Read(
skia::mojom::InlineBitmapDataView data,
SkBitmap* b) {
// TODO: Ensure width and height are reasonable, eg. <= kMaxBitmapSize?
SkImageInfo image_info;
if (!data.ReadImageInfo(&image_info))
return false;
*b = SkBitmap();
if (!b->tryAllocPixels(image_info, data.row_bytes()))
return false;
// If the image is empty, return success after setting the image info.
if (image_info.width() == 0 || image_info.height() == 0)
return true;
mojo::ArrayDataView<uint8_t> data_view;
data.GetPixelDataDataView(&data_view);
if (b->width() != image_info.width() || b->height() != image_info.height() ||
static_cast<uint64_t>(b->rowBytes()) != data.row_bytes() ||
b->computeByteSize() != data_view.size() || !b->readyToDraw()) {
return false;
}
auto bitmap_buffer = base::make_span(static_cast<uint8_t*>(b->getPixels()),
b->computeByteSize());
if (!data.ReadPixelData(&bitmap_buffer) ||
bitmap_buffer.size() != b->computeByteSize()) {
return false;
}
b->notifyPixelsChanged();
return true;
}
} // namespace mojo