blob: ada8bfc8081bb87dde07f3982ecc3992b1810185 [file] [log] [blame]
Cary Clarkd0530ba2017-09-14 11:25:39 -04001#Topic Pixmap
Cary Clark137b8742018-05-30 09:21:49 -04002#Alias Pixmap_Reference ##
Cary Clarke4aa3712017-09-15 02:56:12 -04003
Cary Clarkd0530ba2017-09-14 11:25:39 -04004#Class SkPixmap
5
Cary Clark682c58d2018-05-16 07:07:07 -04006Pixmap provides a utility to pair SkImageInfo with pixels and row bytes.
Cary Clarkd0530ba2017-09-14 11:25:39 -04007Pixmap is a low level class which provides convenience functions to access
8raster destinations. Canvas can not draw Pixmap, nor does Pixmap provide
9a direct drawing destination.
10
11Use Bitmap to draw pixels referenced by Pixmap; use Surface to draw into
12pixels referenced by Pixmap.
13
Cary Clarkbc5697d2017-10-04 14:31:33 -040014Pixmap does not try to manage the lifetime of the pixel memory. Use Pixel_Ref
15to manage pixel memory; Pixel_Ref is safe across threads.
Cary Clarkd0530ba2017-09-14 11:25:39 -040016
Cary Clark682c58d2018-05-16 07:07:07 -040017#Subtopic Overview
18#Populate
19##
20
Cary Clark4855f782018-02-06 09:41:53 -050021#Subtopic Related_Function
Cary Clark08895c42018-02-01 09:37:32 -050022#Populate
Cary Clark5081eed2018-01-22 07:55:48 -050023##
24
Cary Clark4855f782018-02-06 09:41:53 -050025#Subtopic Constructor
Cary Clark08895c42018-02-01 09:37:32 -050026#Populate
27##
Cary Clarkd0530ba2017-09-14 11:25:39 -040028
Cary Clark4855f782018-02-06 09:41:53 -050029#Subtopic Member_Function
Cary Clark08895c42018-02-01 09:37:32 -050030#Populate
31##
Cary Clarkd0530ba2017-09-14 11:25:39 -040032
33#Subtopic Initialization
Cary Clark08895c42018-02-01 09:37:32 -050034#Line # sets fields for use ##
Cary Clarkd0530ba2017-09-14 11:25:39 -040035
36# ------------------------------------------------------------------------------
37
38#Method SkPixmap()
39
Cary Clarkab2621d2018-01-30 10:08:57 -050040#In Initialization
41#Line # constructs with default values ##
Cary Clarkd0530ba2017-09-14 11:25:39 -040042Creates an empty Pixmap without pixels, with kUnknown_SkColorType, with
43kUnknown_SkAlphaType, and with a width and height of zero. Use
44reset() to associate pixels, SkColorType, SkAlphaType, width, and height
45after Pixmap has been created.
46
47#Return empty Pixmap ##
48
49#Example
Cary Clark6fc50412017-09-21 12:31:06 -040050void draw(SkCanvas* canvas) {
51 const char* alphas[] = {"Unknown", "Opaque", "Premul", "Unpremul"};
Cary Clarkab2621d2018-01-30 10:08:57 -050052 const char* colors[] = {"Unknown", "Alpha_8", "RGB_565", "ARGB_4444", "RGBA_8888", "RGB_888x",
53 "BGRA_8888", "RGBA_1010102", "RGB_101010x", "Gray_8", "RGBA_F16"};
Cary Clark6fc50412017-09-21 12:31:06 -040054 SkPixmap pixmap;
55 for (int i = 0; i < 2; ++i) {
56 SkDebugf("width: %2d height: %2d", pixmap.width(), pixmap.height());
57 SkDebugf(" color: k%s_SkColorType", colors[pixmap.colorType()]);
58 SkDebugf(" alpha: k%s_SkAlphaType\n", alphas[pixmap.alphaType()]);
59 pixmap.reset(SkImageInfo::Make(25, 35, kRGBA_8888_SkColorType, kOpaque_SkAlphaType),
60 nullptr, 0);
61 }
Cary Clarkd0530ba2017-09-14 11:25:39 -040062}
63#StdOut
Cary Clark6fc50412017-09-21 12:31:06 -040064width: 0 height: 0 color: kUnknown_SkColorType alpha: kUnknown_SkAlphaType
Cary Clarkd0530ba2017-09-14 11:25:39 -040065width: 25 height: 35 color: kRGBA_8888_SkColorType alpha: kOpaque_SkAlphaType
66##
67##
68
69#SeeAlso SkPixmap(const SkImageInfo& info, const void* addr, size_t rowBytes) reset() SkAlphaType SkColorType
70
71##
72
73# ------------------------------------------------------------------------------
74
75#Method SkPixmap(const SkImageInfo& info, const void* addr, size_t rowBytes)
Cary Clark682c58d2018-05-16 07:07:07 -040076
Cary Clarkab2621d2018-01-30 10:08:57 -050077#In Initialization
78#Line # constructs from Image_Info, pixels ##
Cary Clarkd0530ba2017-09-14 11:25:39 -040079Creates Pixmap from info width, height, SkAlphaType, and SkColorType.
Cary Clark6fc50412017-09-21 12:31:06 -040080addr points to pixels, or nullptr. rowBytes should be info.width() times
81info.bytesPerPixel(), or larger.
Cary Clarkd0530ba2017-09-14 11:25:39 -040082
83No parameter checking is performed; it is up to the caller to ensure that
Cary Clark682c58d2018-05-16 07:07:07 -040084addr and rowBytes agree with info.
Cary Clarkd0530ba2017-09-14 11:25:39 -040085
Cary Clark6fc50412017-09-21 12:31:06 -040086The memory lifetime of pixels is managed by the caller. When Pixmap goes
Cary Clarkd0530ba2017-09-14 11:25:39 -040087out of scope, addr is unaffected.
88
89Pixmap may be later modified by reset() to change its size, pixel type, or
90storage.
91
92#Param info width, height, SkAlphaType, SkColorType of Image_Info ##
93#Param addr pointer to pixels allocated by caller; may be nullptr ##
94#Param rowBytes size of one row of addr; width times pixel size, or larger ##
95
96#Return initialized Pixmap ##
97
98#Example
99#Image 3
100#Description
Cary Clark682c58d2018-05-16 07:07:07 -0400101SkImage::MakeRasterCopy takes const SkPixmap& as an argument. The example
Cary Clarkd0530ba2017-09-14 11:25:39 -0400102constructs a SkPixmap from the brace-delimited parameters.
103##
Cary Clark6fc50412017-09-21 12:31:06 -0400104 SkDebugf("image alpha only = %s\n", image->isAlphaOnly() ? "true" : "false");
105 SkPMColor pmColors = 0;
106 sk_sp<SkImage> copy = SkImage::MakeRasterCopy({SkImageInfo::MakeA8(1, 1),
107 (uint8_t*)&pmColors,
108 1});
Cary Clarkd0530ba2017-09-14 11:25:39 -0400109 SkDebugf("copy alpha only = %s\n", copy->isAlphaOnly() ? "true" : "false");
110#StdOut
Cary Clark6fc50412017-09-21 12:31:06 -0400111image alpha only = false
Cary Clarkd0530ba2017-09-14 11:25:39 -0400112copy alpha only = true
113##
114##
115
116#SeeAlso SkPixmap() reset() SkAlphaType SkColorType
117
118##
119
120# ------------------------------------------------------------------------------
121
122#Method void reset()
123
Cary Clarkab2621d2018-01-30 10:08:57 -0500124#In Initialization
125#Line # reuses existing Pixmap with replacement values ##
Cary Clark682c58d2018-05-16 07:07:07 -0400126Sets width, height, row bytes to zero; pixel address to nullptr; SkColorType to
Cary Clarkd0530ba2017-09-14 11:25:39 -0400127kUnknown_SkColorType; and SkAlphaType to kUnknown_SkAlphaType.
128
129The prior pixels are unaffected; it is up to the caller to release pixels
130memory if desired.
131
132#Example
Cary Clark6fc50412017-09-21 12:31:06 -0400133void draw(SkCanvas* canvas) {
134 const char* alphas[] = {"Unknown", "Opaque", "Premul", "Unpremul"};
Cary Clarkab2621d2018-01-30 10:08:57 -0500135 const char* colors[] = {"Unknown", "Alpha_8", "RGB_565", "ARGB_4444", "RGBA_8888", "RGB_888x",
136 "BGRA_8888", "RGBA_1010102", "RGB_101010x", "Gray_8", "RGBA_F16"};
Cary Clark6fc50412017-09-21 12:31:06 -0400137 SkPixmap pixmap(SkImageInfo::Make(25, 35, kRGBA_8888_SkColorType, kOpaque_SkAlphaType),
138 nullptr, 0);
139 for (int i = 0; i < 2; ++i) {
140 SkDebugf("width: %2d height: %2d", pixmap.width(), pixmap.height());
141 SkDebugf(" color: k%s_SkColorType", colors[pixmap.colorType()]);
142 SkDebugf(" alpha: k%s_SkAlphaType\n", alphas[pixmap.alphaType()]);
143 pixmap.reset();
144 }
145}
Cary Clarkd0530ba2017-09-14 11:25:39 -0400146#StdOut
147width: 25 height: 35 color: kRGBA_8888_SkColorType alpha: kOpaque_SkAlphaType
Cary Clark6fc50412017-09-21 12:31:06 -0400148width: 0 height: 0 color: kUnknown_SkColorType alpha: kUnknown_SkAlphaType
Cary Clarkd0530ba2017-09-14 11:25:39 -0400149##
150##
151
152#SeeAlso SkPixmap() SkAlphaType SkColorType
153
154##
155
156# ------------------------------------------------------------------------------
157
158#Method void reset(const SkImageInfo& info, const void* addr, size_t rowBytes)
159
Cary Clarkab2621d2018-01-30 10:08:57 -0500160#In Initialization
Cary Clarkd0530ba2017-09-14 11:25:39 -0400161Sets width, height, SkAlphaType, and SkColorType from info.
Cary Clark682c58d2018-05-16 07:07:07 -0400162Sets pixel address from addr, which may be nullptr.
Cary Clark6fc50412017-09-21 12:31:06 -0400163Sets row bytes from rowBytes, which should be info.width() times
164info.bytesPerPixel(), or larger.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400165
166Does not check addr. Asserts if built with SK_DEBUG defined and if rowBytes is
Cary Clark682c58d2018-05-16 07:07:07 -0400167too small to hold one row of pixels.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400168
169The memory lifetime pixels are managed by the caller. When Pixmap goes
170out of scope, addr is unaffected.
171
172#Param info width, height, SkAlphaType, SkColorType of Image_Info ##
173#Param addr pointer to pixels allocated by caller; may be nullptr ##
174#Param rowBytes size of one row of addr; width times pixel size, or larger ##
175
176#Example
177#Image 4
Cary Clark2ade9972017-11-02 17:49:34 -0400178#Height 64
Cary Clark6fc50412017-09-21 12:31:06 -0400179void draw(SkCanvas* canvas) {
180 std::vector<int32_t> pixels;
181 pixels.resize(image->height() * image->width() * 4);
182 SkPixmap pixmap(SkImageInfo::Make(image->width(), image->height(), kN32_SkColorType,
183 image->alphaType()), (const void*) &pixels.front(), image->width() * 4);
184 image->readPixels(pixmap, 0, 0);
185 int x = 0;
186 for (auto colorType : { kRGBA_8888_SkColorType, kBGRA_8888_SkColorType } ) {
Cary Clark682c58d2018-05-16 07:07:07 -0400187 pixmap.reset(SkImageInfo::Make(image->width(), image->height(), colorType,
Cary Clark6fc50412017-09-21 12:31:06 -0400188 image->alphaType()), (const void*) &pixels.front(), image->width() * 4);
189 SkBitmap bitmap;
190 bitmap.installPixels(pixmap);
191 canvas->drawBitmap(bitmap, x, 0);
192 x += 128;
193 }
Cary Clarkd0530ba2017-09-14 11:25:39 -0400194}
195##
196
197#SeeAlso SkPixmap(const SkImageInfo& info, const void* addr, size_t rowBytes) reset() SkAlphaType SkColorType
198
199##
200
201# ------------------------------------------------------------------------------
202
203#Method void setColorSpace(sk_sp<SkColorSpace> colorSpace)
204
Cary Clarkab2621d2018-01-30 10:08:57 -0500205#In Initialization
206#Line # sets Image_Info Color_Space ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400207
208Changes Color_Space in Image_Info; preserves width, height, SkAlphaType, and
209SkColorType in Image, and leaves pixel address and row bytes unchanged.
Cary Clark6fc50412017-09-21 12:31:06 -0400210Color_Space reference count is incremented.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400211
212#Param colorSpace Color_Space moved to Image_Info ##
213
214#Example
Cary Clark6fc50412017-09-21 12:31:06 -0400215void draw(SkCanvas* canvas) {
216 SkPixmap pixmap;
217 sk_sp<SkColorSpace> colorSpace1 = SkColorSpace::MakeRGB(SkColorSpace::kLinear_RenderTargetGamma,
218 SkColorSpace::kRec2020_Gamut);
Cary Clark682c58d2018-05-16 07:07:07 -0400219 SkDebugf("is %sunique\n", colorSpace1->unique() ? "" : "not ");
Cary Clark6fc50412017-09-21 12:31:06 -0400220 pixmap.setColorSpace(colorSpace1);
Cary Clark682c58d2018-05-16 07:07:07 -0400221 SkDebugf("is %sunique\n", colorSpace1->unique() ? "" : "not ");
Cary Clarkd0530ba2017-09-14 11:25:39 -0400222}
223#StdOut
224is unique
225is not unique
226##
227##
228
229#SeeAlso Color_Space SkImageInfo::makeColorSpace
230
231##
232
233# ------------------------------------------------------------------------------
234
235#Method bool SK_WARN_UNUSED_RESULT reset(const SkMask& mask)
Cary Clark4855f782018-02-06 09:41:53 -0500236#Deprecated soon
Cary Clarkd0530ba2017-09-14 11:25:39 -0400237##
238
239# ------------------------------------------------------------------------------
240
241#Method bool SK_WARN_UNUSED_RESULT extractSubset(SkPixmap* subset, const SkIRect& area) const
242
Cary Clarkab2621d2018-01-30 10:08:57 -0500243#In Initialization
244#Line # sets pointer to portion of original ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400245Sets subset width, height, pixel address to intersection of Pixmap with area,
246if intersection is not empty; and return true. Otherwise, leave subset unchanged
Cary Clark682c58d2018-05-16 07:07:07 -0400247and return false.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400248
249Failing to read the return value generates a compile time warning.
250
251#Param subset storage for width, height, pixel address of intersection ##
252#Param area bounds to intersect with Pixmap ##
253
254#Return true if intersection of Pixmap and area is not empty ##
255
256#Example
257#Image 3
258#Height 128
Cary Clark6fc50412017-09-21 12:31:06 -0400259void draw(SkCanvas* canvas) {
260 std::vector<int32_t> pixels;
261 pixels.resize(image->height() * image->width() * 4);
262 SkPixmap pixmap(SkImageInfo::Make(image->width(), image->height(), kN32_SkColorType,
263 image->alphaType()), (const void*) &pixels.front(), image->width() * 4);
264 image->readPixels(pixmap, 0, 0);
265 SkPixmap inset;
266 if (pixmap.extractSubset(&inset, {128, 128, 512, 512})) {
267 SkBitmap bitmap;
268 bitmap.installPixels(inset);
269 canvas->drawBitmap(bitmap, 0, 0);
270 }
Cary Clarkd0530ba2017-09-14 11:25:39 -0400271}
272##
273
274#SeeAlso reset() SkIRect::intersect
275
276##
277
278#Subtopic Initialization ##
279
280#Subtopic Image_Info_Access
Cary Clark08895c42018-02-01 09:37:32 -0500281#Line # returns all or part of Image_Info ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400282
283# ------------------------------------------------------------------------------
284
Cary Clark682c58d2018-05-16 07:07:07 -0400285#Method const SkImageInfo& info() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400286
Cary Clarkab2621d2018-01-30 10:08:57 -0500287#In Image_Info_Access
288#Line # returns Image_Info ##
Cary Clark6fc50412017-09-21 12:31:06 -0400289Returns width, height, Alpha_Type, Color_Type, and Color_Space.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400290
291#Return reference to ImageInfo ##
292
293#Example
294#Image 3
Cary Clark6fc50412017-09-21 12:31:06 -0400295 std::vector<int32_t> pixels;
296 pixels.resize(image->height() * image->width() * 4);
297 SkPixmap pixmap(SkImageInfo::Make(image->width(), image->height(), kN32_SkColorType,
298 image->alphaType()), (const void*) &pixels.front(), image->width() * 4);
299 image->readPixels(pixmap, 0, 0);
300 SkPixmap inset;
301 if (pixmap.extractSubset(&inset, {128, 128, 512, 512})) {
302 const SkImageInfo& info = inset.info();
303 const char* alphas[] = {"Unknown", "Opaque", "Premul", "Unpremul"};
Cary Clarkab2621d2018-01-30 10:08:57 -0500304 const char* colors[] = {"Unknown", "Alpha_8", "RGB_565", "ARGB_4444", "RGBA_8888",
305 "RGB_888x", "BGRA_8888", "RGBA_1010102", "RGB_101010x", "Gray_8", "RGBA_F16"};
Cary Clark6fc50412017-09-21 12:31:06 -0400306 SkDebugf("width: %d height: %d color: %s alpha: %s\n", info.width(), info.height(),
307 colors[info.colorType()], alphas[info.alphaType()]);
308 }
309#StdOut
310width: 384 height: 384 color: BGRA_8888 alpha: Opaque
311##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400312##
313
314#SeeAlso Image_Info
315
316##
317
318# ------------------------------------------------------------------------------
319
Cary Clark682c58d2018-05-16 07:07:07 -0400320#Method size_t rowBytes() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400321
Cary Clarkab2621d2018-01-30 10:08:57 -0500322#In Image_Info_Access
323#Line # returns interval between rows in bytes ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400324Returns row bytes, the interval from one pixel row to the next. Row bytes
Cary Clark2be81cf2018-09-13 12:04:30 -0400325is at least as large as: #Formula # width() * info().bytesPerPixel() ##.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400326
Cary Clarkbc5697d2017-10-04 14:31:33 -0400327Returns zero if colorType is kUnknown_SkColorType.
328It is up to the Bitmap creator to ensure that row bytes is a useful value.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400329
330#Return byte length of pixel row ##
331
332#Example
333SkPixmap badPixmap = {SkImageInfo::MakeA8(4, 4), nullptr, 2};
334SkPixmap okPixmap = {SkImageInfo::MakeA8(4, 4), nullptr, 8};
335for (auto& pixmap : { badPixmap, okPixmap } ) {
Cary Clark682c58d2018-05-16 07:07:07 -0400336 SkDebugf("rowBytes: %d minRowBytes: %d\n", pixmap.rowBytes(),
Cary Clarkd0530ba2017-09-14 11:25:39 -0400337 pixmap.info().minRowBytes());
338}
339#StdOut
Cary Clark6fc50412017-09-21 12:31:06 -0400340rowBytes: 2 minRowBytes: 4
Cary Clarkd0530ba2017-09-14 11:25:39 -0400341rowBytes: 8 minRowBytes: 4
342##
343##
344
345#SeeAlso addr() info() SkImageInfo::minRowBytes
346
347##
348
349# ------------------------------------------------------------------------------
350
Cary Clark682c58d2018-05-16 07:07:07 -0400351#Method const void* addr() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400352
Cary Clarkab2621d2018-01-30 10:08:57 -0500353#In Image_Info_Access
354#Line # returns readable pixel address as void pointer ##
Cary Clark6fc50412017-09-21 12:31:06 -0400355Returns pixel address, the base address corresponding to the pixel origin.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400356
357It is up to the Pixmap creator to ensure that pixel address is a useful value.
358
359#Return pixel address ##
360
361#Example
362#Image 3
Cary Clark6fc50412017-09-21 12:31:06 -0400363 std::vector<int32_t> pixels;
364 pixels.resize(image->height() * image->width() * 4);
365 SkPixmap pixmap(SkImageInfo::Make(image->width(), image->height(), kN32_SkColorType,
366 image->alphaType()), (const void*) &pixels.front(), image->width() * 4);
367 image->readPixels(pixmap, 0, 0);
368 SkDebugf("pixels address: 0x%llx\n", pixmap.addr());
369 SkPixmap inset;
370 if (pixmap.extractSubset(&inset, {128, 128, 512, 512})) {
371 SkDebugf("inset address: 0x%llx\n", inset.addr());
372 }
373#StdOut
374#Volatile
375pixels address: 0x7f2a440bb010
376inset address: 0x7f2a440fb210
377##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400378##
379
380#SeeAlso addr(int x, int y) addr8 addr16 addr32 addr64 info() rowBytes()
381
382##
383
384# ------------------------------------------------------------------------------
385
Cary Clark682c58d2018-05-16 07:07:07 -0400386#Method int width() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400387
Cary Clarkab2621d2018-01-30 10:08:57 -0500388#In Image_Info_Access
389#Line # returns pixel column count ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400390Returns pixel count in each pixel row. Should be equal or less than:
Cary Clark154beea2017-10-26 07:58:48 -0400391
Cary Clark2be81cf2018-09-13 12:04:30 -0400392#Formula # rowBytes() / info().bytesPerPixel() ##.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400393
394#Return pixel width in Image_Info ##
395
396#Example
397 SkImageInfo info = SkImageInfo::MakeA8(16, 32);
Cary Clark6fc50412017-09-21 12:31:06 -0400398 SkPixmap pixmap(info, nullptr, 64);
399 SkDebugf("pixmap width: %d info width: %d\n", pixmap.width(), info.width());
400#StdOut
401pixmap width: 16 info width: 16
402##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400403##
404
Cary Clarkbc5697d2017-10-04 14:31:33 -0400405#SeeAlso height() SkImageInfo::width()
Cary Clarkd0530ba2017-09-14 11:25:39 -0400406
407##
408
409# ------------------------------------------------------------------------------
410
Cary Clark682c58d2018-05-16 07:07:07 -0400411#Method int height() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400412
Cary Clarkab2621d2018-01-30 10:08:57 -0500413#In Image_Info_Access
414#Line # returns pixel row count ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400415Returns pixel row count.
416
417#Return pixel height in Image_Info ##
418
419#Example
Cary Clarkbc5697d2017-10-04 14:31:33 -0400420 SkPixmap pixmap(SkImageInfo::MakeA8(16, 32), nullptr, 64);
421 SkDebugf("pixmap height: %d info height: %d\n", pixmap.height(), pixmap.info().height());
Cary Clark6fc50412017-09-21 12:31:06 -0400422#StdOut
423pixmap height: 32 info height: 32
424##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400425##
426
Cary Clarkbc5697d2017-10-04 14:31:33 -0400427#SeeAlso width() ImageInfo::height()
Cary Clarkd0530ba2017-09-14 11:25:39 -0400428
429##
430
431# ------------------------------------------------------------------------------
432
Cary Clark682c58d2018-05-16 07:07:07 -0400433#Method SkColorType colorType() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400434
Cary Clarkab2621d2018-01-30 10:08:57 -0500435#In Image_Info_Access
436#Line # returns Image_Info Color_Type ##
Cary Clark1a8d7622018-03-05 13:26:16 -0500437Returns Color_Type, one of: #list_of_color_types#.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400438
439#Return Color_Type in Image_Info ##
440
441#Example
Cary Clarkab2621d2018-01-30 10:08:57 -0500442 const char* colors[] = {"Unknown", "Alpha_8", "RGB_565", "ARGB_4444", "RGBA_8888", "RGB_888x",
443 "BGRA_8888", "RGBA_1010102", "RGB_101010x", "Gray_8", "RGBA_F16"};
Cary Clark6fc50412017-09-21 12:31:06 -0400444 SkPixmap pixmap(SkImageInfo::MakeA8(16, 32), nullptr, 64);
445 SkDebugf("color type: k" "%s" "_SkColorType\n", colors[pixmap.colorType()]);
446#StdOut
Cary Clarkab2621d2018-01-30 10:08:57 -0500447color type: kAlpha_8_SkColorType
Cary Clark6fc50412017-09-21 12:31:06 -0400448##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400449##
450
Cary Clarkbc5697d2017-10-04 14:31:33 -0400451#SeeAlso alphaType() SkImageInfo::colorType
Cary Clarkd0530ba2017-09-14 11:25:39 -0400452
453##
454
455# ------------------------------------------------------------------------------
456
Cary Clark682c58d2018-05-16 07:07:07 -0400457#Method SkAlphaType alphaType() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400458
Cary Clarkab2621d2018-01-30 10:08:57 -0500459#In Image_Info_Access
460#Line # returns Image_Info Alpha_Type ##
Cary Clark681287e2018-03-16 11:34:15 -0400461Returns Alpha_Type, one of: #list_of_alpha_types#.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400462
463#Return Alpha_Type in Image_Info ##
464
465#Example
Cary Clark6fc50412017-09-21 12:31:06 -0400466 const char* alphas[] = {"Unknown", "Opaque", "Premul", "Unpremul"};
467 SkPixmap pixmap(SkImageInfo::MakeA8(16, 32), nullptr, 64);
468 SkDebugf("alpha type: k" "%s" "_SkAlphaType\n", alphas[pixmap.alphaType()]);
Cary Clarkd0530ba2017-09-14 11:25:39 -0400469#StdOut
470alpha type: kPremul_SkAlphaType
471##
472##
473
Cary Clarkbc5697d2017-10-04 14:31:33 -0400474#SeeAlso colorType() SkImageInfo::alphaType
Cary Clarkd0530ba2017-09-14 11:25:39 -0400475
476##
477
478# ------------------------------------------------------------------------------
479
Cary Clark682c58d2018-05-16 07:07:07 -0400480#Method SkColorSpace* colorSpace() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400481
Cary Clarkab2621d2018-01-30 10:08:57 -0500482#In Image_Info_Access
483#Line # returns Image_Info Color_Space ##
Cary Clark681287e2018-03-16 11:34:15 -0400484Returns Color_Space, the range of colors, associated with Image_Info. The
Cary Clarkbc5697d2017-10-04 14:31:33 -0400485reference count of Color_Space is unchanged. The returned Color_Space is
486immutable.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400487
Cary Clark681287e2018-03-16 11:34:15 -0400488#Return Color_Space in Image_Info, or nullptr ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400489
490#Example
491#Description
492SkColorSpace::MakeSRGBLinear creates Color_Space with linear gamma
493and an sRGB gamut. This Color_Space gamma is not close to sRGB gamma.
494##
Cary Clark682c58d2018-05-16 07:07:07 -0400495 SkPixmap pixmap(SkImageInfo::MakeN32(16, 32, kPremul_SkAlphaType,
Cary Clark6fc50412017-09-21 12:31:06 -0400496 SkColorSpace::MakeSRGBLinear()), nullptr, 64);
497 SkColorSpace* colorSpace = pixmap.colorSpace();
498 SkDebugf("gammaCloseToSRGB: %s gammaIsLinear: %s isSRGB: %s\n",
499 colorSpace->gammaCloseToSRGB() ? "true" : "false",
500 colorSpace->gammaIsLinear() ? "true" : "false",
501 colorSpace->isSRGB() ? "true" : "false");
502#StdOut
503gammaCloseToSRGB: false gammaIsLinear: true isSRGB: false
504##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400505##
506
Cary Clarkbc5697d2017-10-04 14:31:33 -0400507#SeeAlso Color_Space SkImageInfo::colorSpace
Cary Clarkd0530ba2017-09-14 11:25:39 -0400508
509##
510
511# ------------------------------------------------------------------------------
512
Cary Clark682c58d2018-05-16 07:07:07 -0400513#Method bool isOpaque() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400514
Cary Clarkab2621d2018-01-30 10:08:57 -0500515#In Image_Info_Access
516#Line # returns true if Image_Info describes opaque pixels ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400517Returns true if Alpha_Type is kOpaque_SkAlphaType.
Cary Clarkbc5697d2017-10-04 14:31:33 -0400518Does not check if Color_Type allows Alpha, or if any pixel value has
519transparency.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400520
521#Return true if Image_Info has opaque Alpha_Type ##
522
523#Example
524#Description
525 isOpaque ignores whether all pixels are opaque or not.
526##
Cary Clark6fc50412017-09-21 12:31:06 -0400527 std::vector<uint32_t> pixels;
528 const int height = 2;
529 const int width = 2;
530 pixels.resize(height * width * 4);
531 SkPixmap pixmap(SkImageInfo::Make(width, height, kN32_SkColorType,
532 kPremul_SkAlphaType), (const void*) &pixels.front(), width * 4);
533 for (int index = 0; index < 2; ++index) {
534 pixmap.erase(0x00000000);
535 SkDebugf("isOpaque: %s\n", pixmap.isOpaque() ? "true" : "false");
536 pixmap.erase(0xFFFFFFFF);
537 SkDebugf("isOpaque: %s\n", pixmap.isOpaque() ? "true" : "false");
538 pixmap.reset(pixmap.info().makeAlphaType(kOpaque_SkAlphaType),
539 (const void*) &pixels.front(), width * 4);
540 }
Cary Clarkd0530ba2017-09-14 11:25:39 -0400541#StdOut
Cary Clark6fc50412017-09-21 12:31:06 -0400542isOpaque: false
543isOpaque: false
544isOpaque: true
Cary Clarkd0530ba2017-09-14 11:25:39 -0400545isOpaque: true
546##
547##
548
549#SeeAlso computeIsOpaque SkImageInfo::isOpaque
550
551##
552
553# ------------------------------------------------------------------------------
554
Cary Clark682c58d2018-05-16 07:07:07 -0400555#Method SkIRect bounds() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400556
Cary Clarkab2621d2018-01-30 10:08:57 -0500557#In Image_Info_Access
558#Line # returns width and height as Rectangle ##
Cary Clark154beea2017-10-26 07:58:48 -0400559Returns IRect { 0, 0, width(), height() }.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400560
561#Return integral rectangle from origin to width() and height() ##
562
563#Example
564 for (int width : { 0, 2 } ) {
565 for (int height : { 0, 2 } ) {
Cary Clark6fc50412017-09-21 12:31:06 -0400566 SkPixmap pixmap(SkImageInfo::MakeA8(width, height), nullptr, width);
Cary Clarkd0530ba2017-09-14 11:25:39 -0400567 SkDebugf("width: %d height: %d empty: %s\n", width, height,
568 pixmap.bounds().isEmpty() ? "true" : "false");
569 }
570 }
571#StdOut
Cary Clark6fc50412017-09-21 12:31:06 -0400572width: 0 height: 0 empty: true
573width: 0 height: 2 empty: true
574width: 2 height: 0 empty: true
Cary Clarkd0530ba2017-09-14 11:25:39 -0400575width: 2 height: 2 empty: false
576##
577##
578
Cary Clark682c58d2018-05-16 07:07:07 -0400579#SeeAlso height() width() IRect
Cary Clarkd0530ba2017-09-14 11:25:39 -0400580
581##
582
583# ------------------------------------------------------------------------------
584
Cary Clark682c58d2018-05-16 07:07:07 -0400585#Method int rowBytesAsPixels() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400586
Cary Clarkab2621d2018-01-30 10:08:57 -0500587#In Image_Info_Access
588#Line # returns interval between rows in pixels ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400589
590Returns number of pixels that fit on row. Should be greater than or equal to
591width().
592
593#Return maximum pixels per row ##
594
595#Example
Cary Clark6fc50412017-09-21 12:31:06 -0400596 for (int rowBytes : { 4, 5, 6, 7, 8} ) {
597 SkPixmap pixmap(SkImageInfo::MakeN32(1, 1, kPremul_SkAlphaType), nullptr, rowBytes);
598 SkDebugf("rowBytes: %d rowBytesAsPixels: %d\n", rowBytes, pixmap.rowBytesAsPixels());
599 }
Cary Clarkd0530ba2017-09-14 11:25:39 -0400600#StdOut
Cary Clark6fc50412017-09-21 12:31:06 -0400601rowBytes: 4 rowBytesAsPixels: 1
602rowBytes: 5 rowBytesAsPixels: 1
603rowBytes: 6 rowBytesAsPixels: 1
604rowBytes: 7 rowBytesAsPixels: 1
Cary Clarkd0530ba2017-09-14 11:25:39 -0400605rowBytes: 8 rowBytesAsPixels: 2
606##
607##
608
609#SeeAlso rowBytes shiftPerPixel width SkImageInfo::bytesPerPixel
610
611##
612
613# ------------------------------------------------------------------------------
614
Cary Clark682c58d2018-05-16 07:07:07 -0400615#Method int shiftPerPixel() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400616
Cary Clarkab2621d2018-01-30 10:08:57 -0500617#In Image_Info_Access
618#Line # returns bit shift from pixels to bytes ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400619Returns bit shift converting row bytes to row pixels.
620Returns zero for kUnknown_SkColorType.
621
622#Return one of: 0, 1, 2, 3; left shift to convert pixels to bytes ##
623
624#Example
Cary Clarkab2621d2018-01-30 10:08:57 -0500625 const char* colors[] = {"Unknown", "Alpha_8", "RGB_565", "ARGB_4444", "RGBA_8888", "RGB_888x",
626 "BGRA_8888", "RGBA_1010102", "RGB_101010x", "Gray_8", "RGBA_F16"};
Cary Clark6fc50412017-09-21 12:31:06 -0400627 SkImageInfo info = SkImageInfo::MakeA8(1, 1);
628 for (SkColorType colorType : { kUnknown_SkColorType, kAlpha_8_SkColorType,
Cary Clark682c58d2018-05-16 07:07:07 -0400629 kRGB_565_SkColorType, kARGB_4444_SkColorType,
Cary Clark6fc50412017-09-21 12:31:06 -0400630 kRGBA_8888_SkColorType, kBGRA_8888_SkColorType,
631 kGray_8_SkColorType, kRGBA_F16_SkColorType } ) {
632 SkPixmap pixmap(info.makeColorType(colorType), nullptr, 4);
633 SkDebugf("color: k" "%s" "_SkColorType" "%*s" "bytesPerPixel: %d shiftPerPixel: %d\n",
634 colors[colorType], 10 - strlen(colors[colorType]), " ",
635 pixmap.info().bytesPerPixel(), pixmap.shiftPerPixel());
636 }
Cary Clarkd0530ba2017-09-14 11:25:39 -0400637#StdOut
Cary Clark6fc50412017-09-21 12:31:06 -0400638color: kUnknown_SkColorType bytesPerPixel: 0 shiftPerPixel: 0
Cary Clarkab2621d2018-01-30 10:08:57 -0500639color: kAlpha_8_SkColorType bytesPerPixel: 1 shiftPerPixel: 0
Cary Clark6fc50412017-09-21 12:31:06 -0400640color: kRGB_565_SkColorType bytesPerPixel: 2 shiftPerPixel: 1
641color: kARGB_4444_SkColorType bytesPerPixel: 2 shiftPerPixel: 1
642color: kRGBA_8888_SkColorType bytesPerPixel: 4 shiftPerPixel: 2
643color: kBGRA_8888_SkColorType bytesPerPixel: 4 shiftPerPixel: 2
644color: kGray_8_SkColorType bytesPerPixel: 1 shiftPerPixel: 0
Cary Clarkd0530ba2017-09-14 11:25:39 -0400645color: kRGBA_F16_SkColorType bytesPerPixel: 8 shiftPerPixel: 3
646##
647##
648
649#SeeAlso rowBytes rowBytesAsPixels width SkImageInfo::bytesPerPixel
650
651##
652
653# ------------------------------------------------------------------------------
654
Cary Clarkbc5697d2017-10-04 14:31:33 -0400655#Method size_t computeByteSize() const
656
Cary Clarkab2621d2018-01-30 10:08:57 -0500657#In Image_Info_Access
658#Line # returns size required for pixels ##
Cary Clarkbc5697d2017-10-04 14:31:33 -0400659Returns minimum memory required for pixel storage.
660Does not include unused memory on last row when rowBytesAsPixels exceeds width().
661Returns zero if result does not fit in size_t.
662Returns zero if height() or width() is 0.
663Returns height() times rowBytes if colorType is kUnknown_SkColorType.
664
665#Return size in bytes of image buffer ##
666
Cary Clarkd0530ba2017-09-14 11:25:39 -0400667#Example
Cary Clark6fc50412017-09-21 12:31:06 -0400668 SkPixmap pixmap;
669 for (int width : { 1, 1000, 1000000 } ) {
670 for (int height: { 1, 1000, 1000000 } ) {
671 SkImageInfo imageInfo = SkImageInfo::MakeN32(width, height, kPremul_SkAlphaType);
Cary Clarkbc5697d2017-10-04 14:31:33 -0400672 pixmap.reset(imageInfo, nullptr, width * 5);
673 SkDebugf("width: %7d height: %7d computeByteSize: %13lld\n", width, height,
674 pixmap.computeByteSize());
Cary Clark6fc50412017-09-21 12:31:06 -0400675 }
676 }
Cary Clark6fc50412017-09-21 12:31:06 -0400677#StdOut
Ben Wagner29380bd2017-10-09 14:43:00 -0400678width: 1 height: 1 computeByteSize: 4
679width: 1 height: 1000 computeByteSize: 4999
680width: 1 height: 1000000 computeByteSize: 4999999
681width: 1000 height: 1 computeByteSize: 4000
682width: 1000 height: 1000 computeByteSize: 4999000
683width: 1000 height: 1000000 computeByteSize: 4999999000
684width: 1000000 height: 1 computeByteSize: 4000000
685width: 1000000 height: 1000 computeByteSize: 4999000000
Cary Clarkbc5697d2017-10-04 14:31:33 -0400686width: 1000000 height: 1000000 computeByteSize: 4999999000000
Cary Clarkd0530ba2017-09-14 11:25:39 -0400687##
688##
689
Cary Clarkbc5697d2017-10-04 14:31:33 -0400690#SeeAlso SkImageInfo::computeByteSize
Cary Clarkd0530ba2017-09-14 11:25:39 -0400691
692##
693
694#Subtopic Image_Info_Access ##
695
696#Subtopic Reader
Cary Clark08895c42018-02-01 09:37:32 -0500697#Line # examine pixel value ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400698
699# ------------------------------------------------------------------------------
700
701#Method bool computeIsOpaque() const
702
Cary Clarkab2621d2018-01-30 10:08:57 -0500703#In Reader
704#Line # returns true if all pixels are opaque ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400705Returns true if all pixels are opaque. Color_Type determines how pixels
706are encoded, and whether pixel describes Alpha. Returns true for Color_Types
Cary Clark6fc50412017-09-21 12:31:06 -0400707without alpha in each pixel; for other Color_Types, returns true if all
Cary Clarkd0530ba2017-09-14 11:25:39 -0400708pixels have alpha values equivalent to 1.0 or greater.
709
710For Color_Types kRGB_565_SkColorType or kGray_8_SkColorType: always
711returns true. For Color_Types kAlpha_8_SkColorType, kBGRA_8888_SkColorType,
712kRGBA_8888_SkColorType: returns true if all pixel Alpha values are 255.
713For Color_Type kARGB_4444_SkColorType: returns true if all pixel Alpha values are 15.
714For kRGBA_F16_SkColorType: returns true if all pixel Alpha values are 1.0 or
715greater.
716
Cary Clark682c58d2018-05-16 07:07:07 -0400717Returns false for kUnknown_SkColorType.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400718
Cary Clarkbc5697d2017-10-04 14:31:33 -0400719#Return true if all pixels have opaque values or Color_Type is opaque ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400720
721#Example
Cary Clark6fc50412017-09-21 12:31:06 -0400722 std::vector<uint32_t> pixels;
723 const int height = 2;
724 const int width = 2;
725 pixels.resize(height * width * 4);
726 SkPixmap pixmap(SkImageInfo::Make(width, height, kN32_SkColorType,
727 kPremul_SkAlphaType), (const void*) &pixels.front(), width * 4);
728 for (int index = 0; index < 2; ++index) {
729 pixmap.erase(0x00000000);
730 SkDebugf("computeIsOpaque: %s\n", pixmap.computeIsOpaque() ? "true" : "false");
731 pixmap.erase(0xFFFFFFFF);
732 SkDebugf("computeIsOpaque: %s\n", pixmap.computeIsOpaque() ? "true" : "false");
733 pixmap.reset(pixmap.info().makeAlphaType(kOpaque_SkAlphaType),
734 (const void*) &pixels.front(), width * 4);
Cary Clarkd0530ba2017-09-14 11:25:39 -0400735 }
736#StdOut
Cary Clark6fc50412017-09-21 12:31:06 -0400737computeIsOpaque: false
738computeIsOpaque: true
739computeIsOpaque: false
Cary Clarkd0530ba2017-09-14 11:25:39 -0400740computeIsOpaque: true
741##
742##
743
744#SeeAlso isOpaque Color_Type Alpha
745
746##
747
748# ------------------------------------------------------------------------------
749
750#Method SkColor getColor(int x, int y) const
751
Cary Clarkab2621d2018-01-30 10:08:57 -0500752#In Reader
753#Line # returns one pixel as Unpremultiplied Color ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400754Returns pixel at (x, y) as Unpremultiplied Color.
755Returns black with Alpha if Color_Type is kAlpha_8_SkColorType.
756
757Input is not validated: out of bounds values of x or y trigger an assert() if
758built with SK_DEBUG defined; and returns undefined values or may crash if
759SK_RELEASE is defined. Fails if Color_Type is kUnknown_SkColorType or
760pixel address is nullptr.
761
762Color_Space in Image_Info is ignored. Some Color precision may be lost in the
Cary Clark682c58d2018-05-16 07:07:07 -0400763conversion to Unpremultiplied Color; original pixel data may have additional
Cary Clarkd0530ba2017-09-14 11:25:39 -0400764precision.
765
Cary Clark6fc50412017-09-21 12:31:06 -0400766#Param x column index, zero or greater, and less than width() ##
767#Param y row index, zero or greater, and less than height() ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400768
769#Return pixel converted to Unpremultiplied Color ##
770
771#Example
Cary Clark6fc50412017-09-21 12:31:06 -0400772 const int w = 4;
773 const int h = 4;
774 std::vector<SkPMColor> storage;
775 storage.resize(w * h);
776 SkDebugf("Premultiplied:\n");
777 for (int y = 0; y < h; ++y) {
778 SkDebugf("(0, %d) ", y);
779 for (int x = 0; x < w; ++x) {
780 int a = 0xFF * (x + y) / (w - 1 + h - 1);
781 storage[x + y * w] = SkPackARGB32(a, a * x / (w - 1), a * y / (h - 1), a);
782 SkDebugf("0x%08x%c", storage[x + y * w], x == w - 1 ? '\n' : ' ');
783 }
784 }
785 SkPixmap pixmap(SkImageInfo::MakeN32(w, h, kPremul_SkAlphaType), &storage.front(), w * 4);
786 SkDebugf("Unpremultiplied:\n");
787 for (int y = 0; y < h; ++y) {
788 SkDebugf("(0, %d) ", y);
789 for (int x = 0; x < w; ++x) {
790 SkDebugf("0x%08x%c", pixmap.getColor(x, y), x == w - 1 ? '\n' : ' ');
791 }
792 }
Cary Clarkd0530ba2017-09-14 11:25:39 -0400793#StdOut
Cary Clark6fc50412017-09-21 12:31:06 -0400794Premultiplied:
Cary Clark682c58d2018-05-16 07:07:07 -0400795(0, 0) 0x00000000 0x2a0e002a 0x55380055 0x7f7f007f
796(0, 1) 0x2a000e2a 0x551c1c55 0x7f542a7f 0xaaaa38aa
797(0, 2) 0x55003855 0x7f2a547f 0xaa7171aa 0xd4d48dd4
798(0, 3) 0x7f007f7f 0xaa38aaaa 0xd48dd4d4 0xffffffff
Cary Clark6fc50412017-09-21 12:31:06 -0400799Unpremultiplied:
Cary Clark682c58d2018-05-16 07:07:07 -0400800(0, 0) 0x00000000 0x2a5500ff 0x55a800ff 0x7fff00ff
801(0, 1) 0x2a0055ff 0x555454ff 0x7fa954ff 0xaaff54ff
802(0, 2) 0x5500a8ff 0x7f54a9ff 0xaaaaaaff 0xd4ffaaff
803(0, 3) 0x7f00ffff 0xaa54ffff 0xd4aaffff 0xffffffff
Cary Clarkd0530ba2017-09-14 11:25:39 -0400804##
805##
806
Cary Clark8fe29402018-09-20 17:31:43 -0400807#SeeAlso getAlphaf addr() readPixels
808
809##
810
811#Method float getAlphaf(int x, int y) const
812#In Property
813#Line # returns Alpha normalized from zero to one ##
814
815Looks up the pixel at (x,y) and return its alpha component, normalized to [0..1].
816This is roughly equivalent to #Formula # SkGetColorA(getColor()) ##, but can be more efficent
817(and more precise if the pixels store more than 8 bits per component).
818
819#Param x column index, zero or greater, and less than width() ##
820#Param y row index, zero or greater, and less than height() ##
821
822#Return alpha converted to normalized float ##
823
824#NoExample
825##
826
827#SeeAlso getColor
Cary Clarkd0530ba2017-09-14 11:25:39 -0400828
829##
830
831#Subtopic Reader ##
832
833#Subtopic Readable_Address
Cary Clark08895c42018-02-01 09:37:32 -0500834#Line # returns read only pixels ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400835
836# ------------------------------------------------------------------------------
837
838#Method const void* addr(int x, int y) const
839
Cary Clarkab2621d2018-01-30 10:08:57 -0500840#In Readable_Address
Cary Clarkbc5697d2017-10-04 14:31:33 -0400841Returns readable pixel address at (x, y). Returns nullptr if Pixel_Ref is nullptr.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400842
843Input is not validated: out of bounds values of x or y trigger an assert() if
Cary Clarkbc5697d2017-10-04 14:31:33 -0400844built with SK_DEBUG defined. Returns nullptr if Color_Type is kUnknown_SkColorType.
845
Cary Clark682c58d2018-05-16 07:07:07 -0400846Performs a lookup of pixel size; for better performance, call
Cary Clarkbc5697d2017-10-04 14:31:33 -0400847one of: addr8, addr16, addr32, addr64, or addrF16.
Cary Clarkd0530ba2017-09-14 11:25:39 -0400848
Cary Clark6fc50412017-09-21 12:31:06 -0400849#Param x column index, zero or greater, and less than width() ##
850#Param y row index, zero or greater, and less than height() ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400851
852#Return readable generic pointer to pixel ##
853
854#Example
Cary Clark6fc50412017-09-21 12:31:06 -0400855 const int w = 4;
856 const int h = 4;
857 std::vector<SkPMColor> storage;
858 storage.resize(w * h);
859 SkPixmap pixmap(SkImageInfo::MakeN32(w, h, kPremul_SkAlphaType), &storage.front(), w * 4);
Cary Clarkd0530ba2017-09-14 11:25:39 -0400860 SkDebugf("pixmap.addr(1, 2) %c= &storage[1 + 2 * w]\n",
861 pixmap.addr(1, 2) == &storage[1 + 2 * w] ? '=' : '!');
862#StdOut
863pixmap.addr(1, 2) == &storage[1 + 2 * w]
864##
865##
866
Cary Clarkbc5697d2017-10-04 14:31:33 -0400867#SeeAlso addr8 addr16 addr32 addr64 addrF16 getColor writable_addr SkBitmap::getAddr
Cary Clarkd0530ba2017-09-14 11:25:39 -0400868
869##
870
871# ------------------------------------------------------------------------------
872
Cary Clark682c58d2018-05-16 07:07:07 -0400873#Method const uint8_t* addr8() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400874
Cary Clarkab2621d2018-01-30 10:08:57 -0500875#In Readable_Address
876#Line # returns readable pixel address as 8-bit pointer ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400877Returns readable base pixel address. Result is addressable as unsigned 8-bit bytes.
878Will trigger an assert() if Color_Type is not kAlpha_8_SkColorType or
879kGray_8_SkColorType, and is built with SK_DEBUG defined.
880
881One byte corresponds to one pixel.
882
883#Return readable unsigned 8-bit pointer to pixels ##
884
885#Example
Cary Clark6fc50412017-09-21 12:31:06 -0400886 const int w = 4;
887 const int h = 4;
888 uint8_t storage[w * h];
889 SkPixmap pixmap(SkImageInfo::Make(w, h, kGray_8_SkColorType, kPremul_SkAlphaType),
890 storage, w * sizeof(storage[0]));
Cary Clarkd0530ba2017-09-14 11:25:39 -0400891 SkDebugf("pixmap.addr8() %c= storage\n",
892 pixmap.addr8() == storage ? '=' : '!');
893#StdOut
894pixmap.addr8() == storage
895##
896##
897
898#SeeAlso addr() addr16 addr32 addr64 addrF16 getColor writable_addr writable_addr8
899
900##
901
902# ------------------------------------------------------------------------------
903
Cary Clark682c58d2018-05-16 07:07:07 -0400904#Method const uint16_t* addr16() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400905
Cary Clarkab2621d2018-01-30 10:08:57 -0500906#In Readable_Address
907#Line # returns readable pixel address as 16-bit pointer ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400908Returns readable base pixel address. Result is addressable as unsigned 16-bit words.
909Will trigger an assert() if Color_Type is not kRGB_565_SkColorType or
910kARGB_4444_SkColorType, and is built with SK_DEBUG defined.
911
912One word corresponds to one pixel.
913
914#Return readable unsigned 16-bit pointer to pixels ##
915
916#Example
Cary Clark6fc50412017-09-21 12:31:06 -0400917 const int w = 4;
918 const int h = 4;
919 uint16_t storage[w * h];
920 SkPixmap pixmap(SkImageInfo::Make(w, h, kARGB_4444_SkColorType, kPremul_SkAlphaType),
921 storage, w * sizeof(storage[0]));
Cary Clarkd0530ba2017-09-14 11:25:39 -0400922 SkDebugf("pixmap.addr16() %c= storage\n",
923 pixmap.addr16() == storage ? '=' : '!');
924#StdOut
925pixmap.addr16() == storage
926##
927##
928
929#SeeAlso addr() addr8 addr32 addr64 addrF16 getColor writable_addr writable_addr16
930
931##
932
933# ------------------------------------------------------------------------------
934
Cary Clark682c58d2018-05-16 07:07:07 -0400935#Method const uint32_t* addr32() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400936
Cary Clarkab2621d2018-01-30 10:08:57 -0500937#In Readable_Address
938#Line # returns readable pixel address as 32-bit pointer ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400939Returns readable base pixel address. Result is addressable as unsigned 32-bit words.
940Will trigger an assert() if Color_Type is not kRGBA_8888_SkColorType or
941kBGRA_8888_SkColorType, and is built with SK_DEBUG defined.
942
943One word corresponds to one pixel.
944
945#Return readable unsigned 32-bit pointer to pixels ##
946
947#Example
Cary Clark6fc50412017-09-21 12:31:06 -0400948 const int w = 4;
949 const int h = 4;
950 uint32_t storage[w * h];
951 SkPixmap pixmap(SkImageInfo::MakeN32(w, h, kPremul_SkAlphaType),
952 storage, w * sizeof(storage[0]));
Cary Clarkd0530ba2017-09-14 11:25:39 -0400953 SkDebugf("pixmap.addr32() %c= storage\n",
954 pixmap.addr32() == storage ? '=' : '!');
955#StdOut
956pixmap.addr32() == storage
957##
958##
959
960#SeeAlso addr() addr8 addr16 addr64 addrF16 getColor writable_addr writable_addr32
961
962##
963
964# ------------------------------------------------------------------------------
965
Cary Clark682c58d2018-05-16 07:07:07 -0400966#Method const uint64_t* addr64() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400967
Cary Clarkab2621d2018-01-30 10:08:57 -0500968#In Readable_Address
969#Line # returns readable pixel address as 64-bit pointer ##
Cary Clarkd0530ba2017-09-14 11:25:39 -0400970Returns readable base pixel address. Result is addressable as unsigned 64-bit words.
971Will trigger an assert() if Color_Type is not kRGBA_F16_SkColorType and is built
972with SK_DEBUG defined.
973
974One word corresponds to one pixel.
975
976#Return readable unsigned 64-bit pointer to pixels ##
977
978#Example
Cary Clark6fc50412017-09-21 12:31:06 -0400979 const int w = 4;
980 const int h = 4;
981 uint64_t storage[w * h];
982 SkPixmap pixmap(SkImageInfo::Make(w, h, kRGBA_F16_SkColorType, kPremul_SkAlphaType),
983 storage, w * sizeof(storage[0]));
Cary Clarkd0530ba2017-09-14 11:25:39 -0400984 SkDebugf("pixmap.addr64() %c= storage\n",
985 pixmap.addr64() == storage ? '=' : '!');
986#StdOut
987pixmap.addr64() == storage
988##
989##
990
991#SeeAlso addr() addr8 addr16 addr32 addrF16 getColor writable_addr writable_addr64
992
993##
994
995# ------------------------------------------------------------------------------
996
Cary Clark682c58d2018-05-16 07:07:07 -0400997#Method const uint16_t* addrF16() const
Cary Clarkd0530ba2017-09-14 11:25:39 -0400998
Cary Clarkab2621d2018-01-30 10:08:57 -0500999#In Readable_Address
1000#Line # returns readable pixel component address as 16-bit pointer ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001001Returns readable base pixel address. Result is addressable as unsigned 16-bit words.
1002Will trigger an assert() if Color_Type is not kRGBA_F16_SkColorType and is built
1003with SK_DEBUG defined.
1004
1005Each word represents one color component encoded as a half float.
1006Four words correspond to one pixel.
1007
1008#Return readable unsigned 16-bit pointer to first component of pixels ##
1009
1010#Example
Cary Clark6fc50412017-09-21 12:31:06 -04001011 const int w = 4;
1012 const int h = 4;
1013 uint16_t storage[w * h * 4];
1014 SkPixmap pixmap(SkImageInfo::Make(w, h, kRGBA_F16_SkColorType, kPremul_SkAlphaType),
1015 storage, w * 4 * sizeof(storage[0]));
Cary Clarkd0530ba2017-09-14 11:25:39 -04001016 SkDebugf("pixmap.addrF16() %c= storage\n",
1017 pixmap.addrF16() == storage ? '=' : '!');
1018#StdOut
1019pixmap.addrF16() == storage
1020##
1021##
1022
1023#SeeAlso addr() addr8 addr16 addr32 addr64 getColor writable_addr writable_addrF16
1024
1025##
1026
1027# ------------------------------------------------------------------------------
1028
Cary Clark682c58d2018-05-16 07:07:07 -04001029#Method const uint8_t* addr8(int x, int y) const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001030
Cary Clarkab2621d2018-01-30 10:08:57 -05001031#In Readable_Address
Cary Clarkd0530ba2017-09-14 11:25:39 -04001032Returns readable pixel address at (x, y).
1033
1034Input is not validated: out of bounds values of x or y trigger an assert() if
1035built with SK_DEBUG defined.
1036
1037Will trigger an assert() if Color_Type is not kAlpha_8_SkColorType or
1038kGray_8_SkColorType, and is built with SK_DEBUG defined.
1039
Cary Clark6fc50412017-09-21 12:31:06 -04001040#Param x column index, zero or greater, and less than width() ##
1041#Param y row index, zero or greater, and less than height() ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001042
1043#Return readable unsigned 8-bit pointer to pixel at (x, y) ##
1044
1045#Example
Cary Clark6fc50412017-09-21 12:31:06 -04001046 const int w = 4;
1047 const int h = 4;
1048 uint8_t storage[w * h];
1049 SkPixmap pixmap(SkImageInfo::Make(w, h, kGray_8_SkColorType, kPremul_SkAlphaType),
1050 storage, w * sizeof(storage[0]));
1051 SkDebugf("pixmap.addr8(1, 2) %c= &storage[1 + 2 * w]\n",
1052 pixmap.addr8(1, 2) == &storage[1 + 2 * w] ? '=' : '!');
Cary Clarkd0530ba2017-09-14 11:25:39 -04001053#StdOut
1054pixmap.addr8(1, 2) == &storage[1 + 2 * w]
1055##
1056##
1057
1058#SeeAlso addr() addr16 addr32 addr64 addrF16 getColor writable_addr writable_addr8
1059
1060##
1061
1062# ------------------------------------------------------------------------------
1063
Cary Clark682c58d2018-05-16 07:07:07 -04001064#Method const uint16_t* addr16(int x, int y) const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001065
Cary Clarkab2621d2018-01-30 10:08:57 -05001066#In Readable_Address
Cary Clarkd0530ba2017-09-14 11:25:39 -04001067Returns readable pixel address at (x, y).
1068
1069Input is not validated: out of bounds values of x or y trigger an assert() if
1070built with SK_DEBUG defined.
1071
1072Will trigger an assert() if Color_Type is not kRGB_565_SkColorType or
1073kARGB_4444_SkColorType, and is built with SK_DEBUG defined.
1074
Cary Clark6fc50412017-09-21 12:31:06 -04001075#Param x column index, zero or greater, and less than width() ##
1076#Param y row index, zero or greater, and less than height() ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001077
1078#Return readable unsigned 16-bit pointer to pixel at (x, y) ##
1079
1080#Example
Cary Clark6fc50412017-09-21 12:31:06 -04001081 const int w = 4;
1082 const int h = 4;
1083 uint16_t storage[w * h];
1084 SkPixmap pixmap(SkImageInfo::Make(w, h, kARGB_4444_SkColorType, kPremul_SkAlphaType),
1085 storage, w * sizeof(storage[0]));
Cary Clarkd0530ba2017-09-14 11:25:39 -04001086 SkDebugf("pixmap.addr16(1, 2) %c= &storage[1 + 2 * w]\n",
1087 pixmap.addr16(1, 2) == &storage[1 + 2 * w] ? '=' : '!');
1088#StdOut
1089pixmap.addr16(1, 2) == &storage[1 + 2 * w]
1090##
1091##
1092
1093#SeeAlso addr() addr8 addr32 addr64 addrF16 getColor writable_addr writable_addr16
1094
1095##
1096
1097# ------------------------------------------------------------------------------
1098
Cary Clark682c58d2018-05-16 07:07:07 -04001099#Method const uint32_t* addr32(int x, int y) const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001100
Cary Clarkab2621d2018-01-30 10:08:57 -05001101#In Readable_Address
Cary Clarkd0530ba2017-09-14 11:25:39 -04001102Returns readable pixel address at (x, y).
1103
1104Input is not validated: out of bounds values of x or y trigger an assert() if
1105built with SK_DEBUG defined.
1106
1107Will trigger an assert() if Color_Type is not kRGBA_8888_SkColorType or
1108kBGRA_8888_SkColorType, and is built with SK_DEBUG defined.
1109
Cary Clark6fc50412017-09-21 12:31:06 -04001110#Param x column index, zero or greater, and less than width() ##
1111#Param y row index, zero or greater, and less than height() ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001112
1113#Return readable unsigned 32-bit pointer to pixel at (x, y) ##
1114
1115#Example
Cary Clark6fc50412017-09-21 12:31:06 -04001116 const int w = 4;
1117 const int h = 4;
1118 uint32_t storage[w * h];
1119 SkPixmap pixmap(SkImageInfo::Make(w, h, kRGBA_8888_SkColorType, kPremul_SkAlphaType),
1120 storage, w * sizeof(storage[0]));
Cary Clarkd0530ba2017-09-14 11:25:39 -04001121 SkDebugf("pixmap.addr32(1, 2) %c= &storage[1 + 2 * w]\n",
1122 pixmap.addr32(1, 2) == &storage[1 + 2 * w] ? '=' : '!');
1123#StdOut
1124pixmap.addr32(1, 2) == &storage[1 + 2 * w]
1125##
1126##
1127
Cary Clark2ade9972017-11-02 17:49:34 -04001128#SeeAlso addr() addr8 addr16 addr64 addrF16 getColor writable_addr writable_addr64
Cary Clarkd0530ba2017-09-14 11:25:39 -04001129
1130##
1131
1132# ------------------------------------------------------------------------------
1133
Cary Clark682c58d2018-05-16 07:07:07 -04001134#Method const uint64_t* addr64(int x, int y) const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001135
Cary Clarkab2621d2018-01-30 10:08:57 -05001136#In Readable_Address
Cary Clarkd0530ba2017-09-14 11:25:39 -04001137Returns readable pixel address at (x, y).
1138
1139Input is not validated: out of bounds values of x or y trigger an assert() if
1140built with SK_DEBUG defined.
1141
1142Will trigger an assert() if Color_Type is not kRGBA_F16_SkColorType and is built
1143with SK_DEBUG defined.
1144
Cary Clark6fc50412017-09-21 12:31:06 -04001145#Param x column index, zero or greater, and less than width() ##
1146#Param y row index, zero or greater, and less than height() ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001147
1148#Return readable unsigned 64-bit pointer to pixel at (x, y) ##
1149
1150#Example
Cary Clark6fc50412017-09-21 12:31:06 -04001151 const int w = 4;
1152 const int h = 4;
1153 uint64_t storage[w * h];
1154 SkPixmap pixmap(SkImageInfo::Make(w, h, kRGBA_F16_SkColorType, kPremul_SkAlphaType),
1155 storage, w * sizeof(storage[0]));
Cary Clarkd0530ba2017-09-14 11:25:39 -04001156 SkDebugf("pixmap.addr64(1, 2) %c= &storage[1 + 2 * w]\n",
1157 pixmap.addr64(1, 2) == &storage[1 + 2 * w] ? '=' : '!');
1158#StdOut
1159pixmap.addr64(1, 2) == &storage[1 + 2 * w]
1160##
1161##
1162
1163#SeeAlso addr() addr8 addr16 addr32 addrF16 getColor writable_addr writable_addr64
1164
1165##
1166
1167# ------------------------------------------------------------------------------
1168
Cary Clark682c58d2018-05-16 07:07:07 -04001169#Method const uint16_t* addrF16(int x, int y) const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001170
Cary Clarkab2621d2018-01-30 10:08:57 -05001171#In Readable_Address
Cary Clarkd0530ba2017-09-14 11:25:39 -04001172Returns readable pixel address at (x, y).
1173
1174Input is not validated: out of bounds values of x or y trigger an assert() if
1175built with SK_DEBUG defined.
1176
1177Will trigger an assert() if Color_Type is not kRGBA_F16_SkColorType and is built
1178with SK_DEBUG defined.
1179
1180Each unsigned 16-bit word represents one color component encoded as a half float.
1181Four words correspond to one pixel.
1182
Cary Clark6fc50412017-09-21 12:31:06 -04001183#Param x column index, zero or greater, and less than width() ##
1184#Param y row index, zero or greater, and less than height() ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001185
1186#Return readable unsigned 16-bit pointer to pixel component at (x, y) ##
1187
1188#Example
Cary Clark6fc50412017-09-21 12:31:06 -04001189 const int w = 4;
1190 const int h = 4;
1191 const int wordsPerPixel = 4;
1192 const int rowWords = w * wordsPerPixel;
1193 uint16_t storage[rowWords * h];
1194 SkPixmap pixmap(SkImageInfo::Make(w, h, kRGBA_F16_SkColorType, kPremul_SkAlphaType),
1195 storage, rowWords * sizeof(storage[0]));
1196 SkDebugf("pixmap.addrF16(1, 2) %c= &storage[1 * wordsPerPixel + 2 * rowWords]\n",
1197 pixmap.addrF16(1, 2) == &storage[1 * wordsPerPixel + 2 * rowWords] ? '=' : '!');
Cary Clarkd0530ba2017-09-14 11:25:39 -04001198#StdOut
1199pixmap.addrF16(1, 2) == &storage[1 * wordsPerPixel + 2 * rowWords]
1200##
1201##
1202
1203#SeeAlso addr() addr8 addr16 addr32 addr64 getColor writable_addr writable_addrF16
1204
1205##
1206
1207#Subtopic Readable_Address ##
1208
1209#Subtopic Writable_Address
Cary Clark08895c42018-02-01 09:37:32 -05001210#Line # returns writable pixels ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001211
1212# ------------------------------------------------------------------------------
1213
Cary Clark682c58d2018-05-16 07:07:07 -04001214#Method void* writable_addr() const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001215
Cary Clarkab2621d2018-01-30 10:08:57 -05001216#In Writable_Address
1217#Line # returns writable pixel address as void pointer ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001218Returns writable base pixel address.
1219
1220#Return writable generic base pointer to pixels ##
1221
1222#Example
Cary Clark6fc50412017-09-21 12:31:06 -04001223 const int w = 4;
1224 const int h = 4;
1225 SkPMColor storage[w * h * 4];
1226 SkPixmap pixmap(SkImageInfo::MakeN32(w, h, kPremul_SkAlphaType), storage, w * 4);
1227 SkDebugf("pixmap.writable_addr() %c= (void *)storage\n",
1228 pixmap.writable_addr() == (void *)storage ? '=' : '!');
1229 pixmap.erase(0x00000000);
1230 *(SkPMColor*)pixmap.writable_addr() = 0xFFFFFFFF;
1231 SkDebugf("pixmap.getColor(0, 1) %c= 0x00000000\n",
1232 pixmap.getColor(0, 1) == 0x00000000 ? '=' : '!');
1233 SkDebugf("pixmap.getColor(0, 0) %c= 0xFFFFFFFF\n",
Cary Clarkd0530ba2017-09-14 11:25:39 -04001234 pixmap.getColor(0, 0) == 0xFFFFFFFF ? '=' : '!');
1235#StdOut
Cary Clark6fc50412017-09-21 12:31:06 -04001236pixmap.writable_addr() == (void *)storage
1237pixmap.getColor(0, 1) == 0x00000000
Cary Clarkd0530ba2017-09-14 11:25:39 -04001238pixmap.getColor(0, 0) == 0xFFFFFFFF
1239##
1240##
1241
1242#SeeAlso writable_addr8 writable_addr16 writable_addr32 writable_addr64 writable_addrF16 addr()
1243
1244##
1245
1246# ------------------------------------------------------------------------------
1247
Cary Clark682c58d2018-05-16 07:07:07 -04001248#Method void* writable_addr(int x, int y) const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001249
Cary Clarkab2621d2018-01-30 10:08:57 -05001250#In Writable_Address
Cary Clarkd0530ba2017-09-14 11:25:39 -04001251Returns writable pixel address at (x, y).
1252
1253Input is not validated: out of bounds values of x or y trigger an assert() if
1254built with SK_DEBUG defined. Returns zero if Color_Type is kUnknown_SkColorType.
1255
Cary Clark6fc50412017-09-21 12:31:06 -04001256#Param x column index, zero or greater, and less than width() ##
1257#Param y row index, zero or greater, and less than height() ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001258
1259#Return writable generic pointer to pixel ##
1260
1261#Example
Cary Clark6fc50412017-09-21 12:31:06 -04001262 const int w = 4;
1263 const int h = 4;
1264 SkPMColor storage[w * h * 4];
1265 SkPixmap pixmap(SkImageInfo::MakeN32(w, h, kPremul_SkAlphaType), storage, w * 4);
1266 SkDebugf("pixmap.writable_addr() %c= (void *)storage\n",
1267 pixmap.writable_addr() == (void *)storage ? '=' : '!');
1268 pixmap.erase(0x00000000);
1269 *(SkPMColor*)pixmap.writable_addr(1, 2) = 0xFFFFFFFF;
1270 SkDebugf("pixmap.getColor(0, 0) %c= 0x00000000\n",
1271 pixmap.getColor(0, 0) == 0x00000000 ? '=' : '!');
1272 SkDebugf("pixmap.getColor(1, 2) %c= 0xFFFFFFFF\n",
Cary Clarkd0530ba2017-09-14 11:25:39 -04001273 pixmap.getColor(1, 2) == 0xFFFFFFFF ? '=' : '!');
1274#StdOut
Cary Clark6fc50412017-09-21 12:31:06 -04001275pixmap.writable_addr() == (void *)storage
1276pixmap.getColor(0, 0) == 0x00000000
Cary Clarkd0530ba2017-09-14 11:25:39 -04001277pixmap.getColor(1, 2) == 0xFFFFFFFF
1278##
1279##
1280
1281#SeeAlso writable_addr8 writable_addr16 writable_addr32 writable_addr64 writable_addrF16 addr()
1282
1283##
1284
1285# ------------------------------------------------------------------------------
1286
Cary Clark682c58d2018-05-16 07:07:07 -04001287#Method uint8_t* writable_addr8(int x, int y) const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001288
Cary Clarkab2621d2018-01-30 10:08:57 -05001289#In Writable_Address
1290#Line # returns writable pixel address as 8-bit pointer ##
Cary Clark6fc50412017-09-21 12:31:06 -04001291Returns writable pixel address at (x, y). Result is addressable as unsigned
12928-bit bytes. Will trigger an assert() if Color_Type is not kAlpha_8_SkColorType
1293or kGray_8_SkColorType, and is built with SK_DEBUG defined.
Cary Clarkd0530ba2017-09-14 11:25:39 -04001294
1295One byte corresponds to one pixel.
1296
Cary Clark6fc50412017-09-21 12:31:06 -04001297#Param x column index, zero or greater, and less than width() ##
1298#Param y row index, zero or greater, and less than height() ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001299
1300#Return writable unsigned 8-bit pointer to pixels ##
1301
1302#Example
1303#Height 64
1304#Description
1305Altering pixels after drawing Bitmap is not guaranteed to affect subsequent
1306drawing on all platforms. Adding a second SkBitmap::installPixels after editing
1307pixel memory is safer.
1308##
Cary Clark6fc50412017-09-21 12:31:06 -04001309void draw(SkCanvas* canvas) {
1310 uint8_t storage[][5] = {{ 0, 0, 64, 0, 0},
1311 { 0, 128, 255, 128, 0},
1312 {64, 255, 255, 255, 64},
1313 { 0, 128, 255, 128, 0},
1314 { 0, 0, 64, 0, 0}};
1315 SkImageInfo imageInfo = SkImageInfo::Make(5, 5, kGray_8_SkColorType, kPremul_SkAlphaType);
1316 SkPixmap pixmap(imageInfo, storage[0], 5);
1317 SkBitmap bitmap;
1318 bitmap.installPixels(pixmap);
1319 canvas->scale(10, 10);
1320 canvas->drawBitmap(bitmap, 0, 0);
1321 *pixmap.writable_addr8(2, 2) = 0;
1322// bitmap.installPixels(pixmap); // uncomment to fix on GPU
1323 canvas->drawBitmap(bitmap, 10, 0);
Cary Clarkd0530ba2017-09-14 11:25:39 -04001324}
1325##
1326
1327#SeeAlso writable_addr writable_addr16 writable_addr32 writable_addr64 writable_addrF16 addr() addr8
1328
1329##
1330
1331# ------------------------------------------------------------------------------
1332
Cary Clark682c58d2018-05-16 07:07:07 -04001333#Method uint16_t* writable_addr16(int x, int y) const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001334
Cary Clarkab2621d2018-01-30 10:08:57 -05001335#In Writable_Address
1336#Line # returns writable pixel address as 16-bit pointer ##
Cary Clark6fc50412017-09-21 12:31:06 -04001337Returns writable_addr pixel address at (x, y). Result is addressable as unsigned
133816-bit words. Will trigger an assert() if Color_Type is not kRGB_565_SkColorType
1339or kARGB_4444_SkColorType, and is built with SK_DEBUG defined.
Cary Clarkd0530ba2017-09-14 11:25:39 -04001340
1341One word corresponds to one pixel.
1342
Cary Clark6fc50412017-09-21 12:31:06 -04001343#Param x column index, zero or greater, and less than width() ##
1344#Param y row index, zero or greater, and less than height() ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001345
1346#Return writable unsigned 16-bit pointer to pixel ##
1347
1348#Example
1349#Description
1350Draw a five by five bitmap, and draw it again with a center black pixel.
1351The low nibble of the 16-bit word is Alpha.
1352##
1353#Height 64
Cary Clark6fc50412017-09-21 12:31:06 -04001354 uint16_t storage[][5] = {{ 0xCABF, 0xDABE, 0xCA9D, 0xC96C, 0xA39B },
1355 { 0xACEE, 0xA87C, 0x893A, 0x4779, 0x8708 },
1356 { 0x4B7C, 0x255B, 0x2559, 0x2557, 0x4656 },
1357 { 0x9099, 0x8128, 0x2557, 0x4124, 0x3323 },
1358 { 0x7547, 0x5505, 0x4434, 0x2012, 0x0000 }};
1359 SkImageInfo imageInfo = SkImageInfo::Make(5, 5, kARGB_4444_SkColorType, kPremul_SkAlphaType);
1360 SkPixmap pixmap(imageInfo, storage[0], sizeof(storage) / 5);
1361 SkBitmap bitmap;
1362 bitmap.installPixels(pixmap);
1363 canvas->scale(10, 10);
1364 canvas->drawBitmap(bitmap, 0, 0);
1365 *pixmap.writable_addr16(2, 2) = 0x000F;
1366 bitmap.installPixels(pixmap);
Cary Clarkd0530ba2017-09-14 11:25:39 -04001367 canvas->drawBitmap(bitmap, 10, 0);
1368##
1369
1370#SeeAlso writable_addr writable_addr8 writable_addr32 writable_addr64 writable_addrF16 addr() addr16
1371
1372##
1373
1374# ------------------------------------------------------------------------------
1375
Cary Clark682c58d2018-05-16 07:07:07 -04001376#Method uint32_t* writable_addr32(int x, int y) const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001377
Cary Clarkab2621d2018-01-30 10:08:57 -05001378#In Writable_Address
1379#Line # returns writable pixel address as 32-bit pointer ##
Cary Clark6fc50412017-09-21 12:31:06 -04001380Returns writable pixel address at (x, y). Result is addressable as unsigned
138132-bit words. Will trigger an assert() if Color_Type is not
1382kRGBA_8888_SkColorType or kBGRA_8888_SkColorType, and is built with SK_DEBUG
1383defined.
Cary Clarkd0530ba2017-09-14 11:25:39 -04001384
1385One word corresponds to one pixel.
1386
Cary Clark6fc50412017-09-21 12:31:06 -04001387#Param x column index, zero or greater, and less than width() ##
1388#Param y row index, zero or greater, and less than height() ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001389
1390#Return writable unsigned 32-bit pointer to pixel ##
1391
1392#Example
1393#Image 4
1394#Height 72
Cary Clark6fc50412017-09-21 12:31:06 -04001395 std::vector<int32_t> pixels;
1396 pixels.resize(image->height() * image->width() * 4);
1397 SkPixmap pixmap(SkImageInfo::Make(image->width(), image->height(), kN32_SkColorType,
1398 image->alphaType()), (const void*) &pixels.front(), image->width() * 4);
1399 image->readPixels(pixmap, 0, 0);
1400 for (int y = 0; y < pixmap.height() / 2; ++y) {
1401 for (int x = 0; x < pixmap.width(); ++x) {
1402 if ((x & 4) == (y & 4)) {
Cary Clark4d759752018-06-19 12:57:43 -04001403 *pixmap.writable_addr32(x, y) =
1404 *pixmap.writable_addr32(pixmap.width() - x, pixmap.height() - y);
Cary Clark6fc50412017-09-21 12:31:06 -04001405 }
1406 }
1407 }
1408 SkBitmap bitmap;
1409 bitmap.installPixels(pixmap);
Cary Clarkd0530ba2017-09-14 11:25:39 -04001410 canvas->drawBitmap(bitmap, 0, 0);
1411##
1412
1413#SeeAlso writable_addr writable_addr8 writable_addr16 writable_addr64 writable_addrF16 addr() addr32
1414
1415##
1416
1417# ------------------------------------------------------------------------------
1418
Cary Clark682c58d2018-05-16 07:07:07 -04001419#Method uint64_t* writable_addr64(int x, int y) const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001420
Cary Clarkab2621d2018-01-30 10:08:57 -05001421#In Writable_Address
1422#Line # returns writable pixel address as 64-bit pointer ##
Cary Clark6fc50412017-09-21 12:31:06 -04001423Returns writable pixel address at (x, y). Result is addressable as unsigned
142464-bit words. Will trigger an assert() if Color_Type is not
1425kRGBA_F16_SkColorType and is built with SK_DEBUG defined.
Cary Clarkd0530ba2017-09-14 11:25:39 -04001426
1427One word corresponds to one pixel.
1428
Cary Clark6fc50412017-09-21 12:31:06 -04001429#Param x column index, zero or greater, and less than width() ##
1430#Param y row index, zero or greater, and less than height() ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001431
1432#Return writable unsigned 64-bit pointer to pixel ##
1433
1434#Example
Cary Clark2ade9972017-11-02 17:49:34 -04001435#Height 40
Cary Clark6fc50412017-09-21 12:31:06 -04001436 SkImageInfo info = SkImageInfo::Make(3, 3, kRGBA_F16_SkColorType, kPremul_SkAlphaType);
1437 uint64_t storage[9];
1438 SkPixmap pixmap(info, storage, 3 * sizeof(uint64_t));
1439 SkColor4f c4 { 1, 0.45f, 0.25f, 0.65f };
1440 pixmap.erase(c4);
1441 SkBitmap bitmap;
1442 canvas->scale(10, 10);
1443 bitmap.installPixels(pixmap);
1444 canvas->drawBitmap(bitmap, 0, 0);
1445 *pixmap.writable_addr64(1, 1) |= 0x00ff000000000000LL;
1446 bitmap.installPixels(pixmap);
Cary Clarkd0530ba2017-09-14 11:25:39 -04001447 canvas->drawBitmap(bitmap, 10, 0);
1448##
1449
1450#SeeAlso writable_addr writable_addr8 writable_addr16 writable_addr32 writable_addrF16 addr() addr64
1451
1452##
1453
1454# ------------------------------------------------------------------------------
1455
Cary Clark682c58d2018-05-16 07:07:07 -04001456#Method uint16_t* writable_addrF16(int x, int y) const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001457
Cary Clarkab2621d2018-01-30 10:08:57 -05001458#In Writable_Address
1459#Line # returns writable pixel component address as 16-bit pointer ##
Cary Clark6fc50412017-09-21 12:31:06 -04001460Returns writable pixel address at (x, y). Result is addressable as unsigned
146116-bit words. Will trigger an assert() if Color_Type is not
1462kRGBA_F16_SkColorType and is built with SK_DEBUG defined.
Cary Clarkd0530ba2017-09-14 11:25:39 -04001463
1464Each word represents one color component encoded as a half float.
1465Four words correspond to one pixel.
1466
Cary Clark6fc50412017-09-21 12:31:06 -04001467#Param x column index, zero or greater, and less than width() ##
1468#Param y row index, zero or greater, and less than height() ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001469
1470#Return writable unsigned 16-bit pointer to first component of pixel ##
1471
1472#Example
1473#Height 64
1474#Description
1475Left bitmap is drawn with two pixels defined in half float format. Right bitmap
Cary Clark682c58d2018-05-16 07:07:07 -04001476is drawn after overwriting bottom half float color with top half float color.
Cary Clarkd0530ba2017-09-14 11:25:39 -04001477##
Cary Clark6fc50412017-09-21 12:31:06 -04001478 SkImageInfo info = SkImageInfo::Make(1, 2, kRGBA_F16_SkColorType, kPremul_SkAlphaType);
1479 uint16_t storage[2][4];
1480 SkPixmap pixmap(info, storage[0], sizeof(uint64_t));
1481 SkIRect topPixelBounds = {0, 0, 1, 1};
1482 pixmap.erase({ 0.65f, 0.45f, 0.25f, 1 }, &topPixelBounds);
1483 SkIRect bottomPixelBounds = {0, 1, 1, 2};
1484 pixmap.erase({ 0.25f, 0.65f, 0.45f, 1 }, &bottomPixelBounds);
1485 SkBitmap bitmap;
1486 canvas->scale(20, 20);
1487 bitmap.installPixels(pixmap);
1488 canvas->drawBitmap(bitmap, 0, 0);
1489 uint16_t* pixel2 = pixmap.writable_addrF16(0, 1);
1490 for (int i = 0; i < 4; ++i) {
1491 pixel2[i] = storage[0][i];
1492 }
1493 bitmap.installPixels(pixmap);
1494 canvas->drawBitmap(bitmap, 4, 0);
Cary Clarkd0530ba2017-09-14 11:25:39 -04001495##
1496
1497#SeeAlso writable_addr writable_addr8 writable_addr16 writable_addr32 writable_addr64 addr() addrF16
1498
1499##
1500
1501#Subtopic Writable_Address ##
1502
Cary Clark78de7512018-02-07 07:27:09 -05001503#Subtopic Pixels
1504#Populate
1505#Line # read and write pixel values ##
1506##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001507
1508# ------------------------------------------------------------------------------
1509
Cary Clarke80cd442018-07-17 13:19:56 -04001510#Method bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes) const
Cary Clark78de7512018-02-07 07:27:09 -05001511#In Pixels
Cary Clarkab2621d2018-01-30 10:08:57 -05001512#Line # copies and converts pixels ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001513
Cary Clarkd0530ba2017-09-14 11:25:39 -04001514Copies a Rect of pixels to dstPixels. Copy starts at (0, 0), and does not
Cary Clarkac47b882018-01-11 10:35:44 -05001515exceed Pixmap (width(), height()).
Cary Clark6fc50412017-09-21 12:31:06 -04001516
Cary Clark682c58d2018-05-16 07:07:07 -04001517dstInfo specifies width, height, Color_Type, Alpha_Type, and
Cary Clarkd0530ba2017-09-14 11:25:39 -04001518Color_Space of destination. dstRowBytes specifics the gap from one destination
1519row to the next. Returns true if pixels are copied. Returns false if
1520dstInfo.addr() equals nullptr, or dstRowBytes is less than dstInfo.minRowBytes.
1521
Cary Clarkac47b882018-01-11 10:35:44 -05001522Pixels are copied only if pixel conversion is possible. If Pixmap colorType is
Cary Clarkd0530ba2017-09-14 11:25:39 -04001523kGray_8_SkColorType, or kAlpha_8_SkColorType; dstInfo.colorType must match.
Cary Clarkac47b882018-01-11 10:35:44 -05001524If Pixmap colorType is kGray_8_SkColorType, dstInfo.colorSpace must match.
1525If Pixmap alphaType is kOpaque_SkAlphaType, dstInfo.alphaType must
1526match. If Pixmap colorSpace is nullptr, dstInfo.colorSpace must match. Returns
Cary Clarkd0530ba2017-09-14 11:25:39 -04001527false if pixel conversion is not possible.
1528
Cary Clarkac47b882018-01-11 10:35:44 -05001529Returns false if Pixmap width() or height() is zero or negative.
Cary Clarkd0530ba2017-09-14 11:25:39 -04001530
1531#Param dstInfo destination width, height, Color_Type, Alpha_Type, Color_Space ##
1532#Param dstPixels destination pixel storage ##
1533#Param dstRowBytes destination row length ##
1534
1535#Return true if pixels are copied to dstPixels ##
1536
1537#Example
1538#Height 128
1539#Description
1540Transferring the gradient from 8 bits per component to 4 bits per component
1541creates visible banding.
1542##
Cary Clark6fc50412017-09-21 12:31:06 -04001543 std::vector<int32_t> pixels;
1544 const int width = 256;
1545 const int height = 64;
1546 pixels.resize(height * width * 4);
1547 SkImageInfo srcInfo = SkImageInfo::MakeN32Premul(width, height);
1548 SkPixmap srcPixmap(srcInfo, (const void*) &pixels.front(), width * 4);
1549 SkColor gradColors[] = { 0xFFAA3300, 0x7F881122 };
1550 SkPoint gradPoints[] = { { 0, 0 }, { 256, 0 } };
1551 SkPaint paint;
1552 paint.setShader(SkGradientShader::MakeLinear(gradPoints, gradColors, nullptr,
1553 SK_ARRAY_COUNT(gradColors), SkShader::kClamp_TileMode));
1554 SkBitmap bitmap;
1555 bitmap.installPixels(srcPixmap);
1556 SkCanvas srcCanvas(bitmap);
1557 srcCanvas.drawRect(SkRect::MakeWH(width, height), paint);
1558 canvas->drawBitmap(bitmap, 0, 0);
1559 std::vector<int32_t> dstPixels;
1560 dstPixels.resize(height * width * 2);
1561 SkImageInfo dstInfo = srcInfo.makeColorType(kARGB_4444_SkColorType);
1562 srcPixmap.readPixels(dstInfo, &dstPixels.front(), width * 2);
1563 SkPixmap dstPixmap(dstInfo, &dstPixels.front(), width * 2);
1564 bitmap.installPixels(dstPixmap);
Cary Clarkd0530ba2017-09-14 11:25:39 -04001565 canvas->drawBitmap(bitmap, 0, 128);
1566##
1567
1568#SeeAlso erase SkBitmap::readPixels SkCanvas::drawBitmap SkCanvas::readPixels SkImage::readPixels SkSurface::readPixels
1569
1570##
1571
1572# ------------------------------------------------------------------------------
1573
1574#Method bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, int srcX,
Cary Clark682c58d2018-05-16 07:07:07 -04001575 int srcY) const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001576
1577Copies a Rect of pixels to dstPixels. Copy starts at (srcX, srcY), and does not
Cary Clarkac47b882018-01-11 10:35:44 -05001578exceed Pixmap (width(), height()).
Cary Clark6fc50412017-09-21 12:31:06 -04001579
Cary Clark682c58d2018-05-16 07:07:07 -04001580dstInfo specifies width, height, Color_Type, Alpha_Type, and
Cary Clarkd0530ba2017-09-14 11:25:39 -04001581Color_Space of destination. dstRowBytes specifics the gap from one destination
1582row to the next. Returns true if pixels are copied. Returns false if
1583dstInfo.addr() equals nullptr, or dstRowBytes is less than dstInfo.minRowBytes.
1584
Cary Clarkac47b882018-01-11 10:35:44 -05001585Pixels are copied only if pixel conversion is possible. If Pixmap colorType is
Cary Clarkd0530ba2017-09-14 11:25:39 -04001586kGray_8_SkColorType, or kAlpha_8_SkColorType; dstInfo.colorType must match.
Cary Clarkac47b882018-01-11 10:35:44 -05001587If Pixmap colorType is kGray_8_SkColorType, dstInfo.colorSpace must match.
1588If Pixmap alphaType is kOpaque_SkAlphaType, dstInfo.alphaType must
1589match. If Pixmap colorSpace is nullptr, dstInfo.colorSpace must match. Returns
Cary Clarkd0530ba2017-09-14 11:25:39 -04001590false if pixel conversion is not possible.
Cary Clark682c58d2018-05-16 07:07:07 -04001591
Cary Clarkd0530ba2017-09-14 11:25:39 -04001592srcX and srcY may be negative to copy only top or left of source. Returns
Cary Clarkac47b882018-01-11 10:35:44 -05001593false if Pixmap width() or height() is zero or negative. Returns false if:
Cary Clark154beea2017-10-26 07:58:48 -04001594
Cary Clark2be81cf2018-09-13 12:04:30 -04001595#Formula # abs(srcX) >= Pixmap width() ##, or if #Formula # abs(srcY) >= Pixmap height() ##.
Cary Clarkd0530ba2017-09-14 11:25:39 -04001596
1597#Param dstInfo destination width, height, Color_Type, Alpha_Type, Color_Space ##
1598#Param dstPixels destination pixel storage ##
1599#Param dstRowBytes destination row length ##
1600#Param srcX column index whose absolute value is less than width() ##
1601#Param srcY row index whose absolute value is less than height() ##
1602
1603#Return true if pixels are copied to dstPixels ##
1604
1605#Example
1606#Image 3
Cary Clark6fc50412017-09-21 12:31:06 -04001607void draw(SkCanvas* canvas) {
1608 SkImageInfo info = SkImageInfo::MakeN32Premul(image->width(), image->height());
1609 std::vector<int32_t> srcPixels;
1610 const int rowBytes = image->width() * 4;
1611 srcPixels.resize(image->height() * rowBytes);
1612 SkPixmap pixmap(info, (const void*) &srcPixels.front(), rowBytes);
1613 image->readPixels(pixmap, 0, 0);
1614 for (int offset : { 32, 64, 96 } ) {
1615 std::vector<int32_t> dstPixels;
1616 dstPixels.resize(image->height() * rowBytes);
1617 pixmap.readPixels(info, &dstPixels.front(), rowBytes, offset, 0);
1618 SkBitmap bitmap;
1619 SkPixmap dstmap(info, &dstPixels.front(), rowBytes);
1620 bitmap.installPixels(dstmap);
1621 canvas->translate(32, 32);
1622 canvas->drawBitmap(bitmap, 0, 0);
1623 }
Cary Clarkd0530ba2017-09-14 11:25:39 -04001624}
1625##
1626
1627#SeeAlso erase SkBitmap::readPixels SkCanvas::drawBitmap SkCanvas::readPixels SkImage::readPixels SkSurface::readPixels
1628
1629##
1630
1631# ------------------------------------------------------------------------------
1632
Cary Clark682c58d2018-05-16 07:07:07 -04001633#Method bool readPixels(const SkPixmap& dst, int srcX, int srcY) const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001634
1635Copies a Rect of pixels to dst. Copy starts at (srcX, srcY), and does not
Cary Clarkac47b882018-01-11 10:35:44 -05001636exceed Pixmap (width(), height()). dst specifies width, height, Color_Type,
Cary Clarkd0530ba2017-09-14 11:25:39 -04001637Alpha_Type, and Color_Space of destination. Returns true if pixels are copied.
1638Returns false if dst.addr() equals nullptr, or dst.rowBytes is less than
1639dst SkImageInfo::minRowBytes.
1640
Cary Clarkac47b882018-01-11 10:35:44 -05001641Pixels are copied only if pixel conversion is possible. If Pixmap colorType is
Cary Clarkd0530ba2017-09-14 11:25:39 -04001642kGray_8_SkColorType, or kAlpha_8_SkColorType; dst.info().colorType must match.
Cary Clarkac47b882018-01-11 10:35:44 -05001643If Pixmap colorType is kGray_8_SkColorType, dst.info().colorSpace must match.
1644If Pixmap alphaType is kOpaque_SkAlphaType, dst.info().alphaType must
1645match. If Pixmap colorSpace is nullptr, dst.info().colorSpace must match. Returns
Cary Clarkd0530ba2017-09-14 11:25:39 -04001646false if pixel conversion is not possible.
Cary Clark682c58d2018-05-16 07:07:07 -04001647
Cary Clarkd0530ba2017-09-14 11:25:39 -04001648srcX and srcY may be negative to copy only top or left of source. Returns
Cary Clarkac47b882018-01-11 10:35:44 -05001649false Pixmap width() or height() is zero or negative. Returns false if:
Cary Clark154beea2017-10-26 07:58:48 -04001650
Cary Clark2be81cf2018-09-13 12:04:30 -04001651#Formula # abs(srcX) >= Pixmap width() ##, or if #Formula # abs(srcY) >= Pixmap height() ##.
Cary Clarkd0530ba2017-09-14 11:25:39 -04001652
1653#Param dst Image_Info and pixel address to write to ##
1654#Param srcX column index whose absolute value is less than width() ##
1655#Param srcY row index whose absolute value is less than height() ##
1656
1657#Return true if pixels are copied to dst ##
1658
1659#Example
1660#Image 3
Cary Clark6fc50412017-09-21 12:31:06 -04001661void draw(SkCanvas* canvas) {
1662 SkImageInfo info = SkImageInfo::MakeN32Premul(image->width(), image->height());
1663 std::vector<int32_t> srcPixels;
1664 const int rowBytes = image->width() * 4;
1665 srcPixels.resize(image->height() * rowBytes);
1666 SkPixmap pixmap(info, (const void*) &srcPixels.front(), rowBytes);
1667 image->readPixels(pixmap, 0, 0);
1668 for (int offset : { 32, 64, 96 } ) {
1669 std::vector<int32_t> dstPixels;
1670 dstPixels.resize(image->height() * rowBytes);
1671 SkPixmap dstmap(info, &dstPixels.front(), rowBytes);
1672 pixmap.readPixels(dstmap, offset, 0);
1673 SkBitmap bitmap;
1674 bitmap.installPixels(dstmap);
1675 canvas->translate(32, 32);
1676 canvas->drawBitmap(bitmap, 0, 0);
1677 }
Cary Clarkd0530ba2017-09-14 11:25:39 -04001678}
1679##
1680
1681#SeeAlso erase SkBitmap::readPixels SkCanvas::drawBitmap SkCanvas::readPixels SkImage::readPixels SkSurface::readPixels
1682
1683##
1684
1685# ------------------------------------------------------------------------------
1686
Cary Clark682c58d2018-05-16 07:07:07 -04001687#Method bool readPixels(const SkPixmap& dst) const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001688
1689Copies pixels inside bounds() to dst. dst specifies width, height, Color_Type,
1690Alpha_Type, and Color_Space of destination. Returns true if pixels are copied.
1691Returns false if dst.addr() equals nullptr, or dst.rowBytes is less than
1692dst SkImageInfo::minRowBytes.
1693
Cary Clarkac47b882018-01-11 10:35:44 -05001694Pixels are copied only if pixel conversion is possible. If Pixmap colorType is
Cary Clarkd0530ba2017-09-14 11:25:39 -04001695kGray_8_SkColorType, or kAlpha_8_SkColorType; dst Color_Type must match.
Cary Clarkac47b882018-01-11 10:35:44 -05001696If Pixmap colorType is kGray_8_SkColorType, dst Color_Space must match.
1697If Pixmap alphaType is kOpaque_SkAlphaType, dst Alpha_Type must
1698match. If Pixmap colorSpace is nullptr, dst Color_Space must match. Returns
Cary Clarkd0530ba2017-09-14 11:25:39 -04001699false if pixel conversion is not possible.
Cary Clark682c58d2018-05-16 07:07:07 -04001700
Cary Clarkac47b882018-01-11 10:35:44 -05001701Returns false if Pixmap width() or height() is zero or negative.
Cary Clarkd0530ba2017-09-14 11:25:39 -04001702
1703#Param dst Image_Info and pixel address to write to ##
1704
1705#Return true if pixels are copied to dst ##
1706
1707#Example
1708#Image 3
Cary Clark6fc50412017-09-21 12:31:06 -04001709void draw(SkCanvas* canvas) {
1710 SkImageInfo info = SkImageInfo::MakeN32Premul(image->width(), image->height());
1711 std::vector<int32_t> srcPixels;
1712 const int rowBytes = image->width() * 4;
1713 srcPixels.resize(image->height() * rowBytes);
1714 SkPixmap pixmap(info, (const void*) &srcPixels.front(), rowBytes);
1715 image->readPixels(pixmap, 0, 0);
1716 for (int index = 0; index < 3; ++index ) {
1717 std::vector<int32_t> dstPixels;
1718 dstPixels.resize(image->height() * rowBytes);
1719 SkPixmap dstmap(info, &dstPixels.front(), rowBytes);
1720 pixmap.readPixels(dstmap);
1721 SkBitmap bitmap;
1722 bitmap.installPixels(dstmap);
1723 canvas->translate(32, 32);
1724 canvas->drawBitmap(bitmap, 0, 0);
1725 }
Cary Clarkd0530ba2017-09-14 11:25:39 -04001726}
1727##
1728
1729#SeeAlso erase SkBitmap::readPixels SkCanvas::drawBitmap SkCanvas::readPixels SkImage::readPixels SkSurface::readPixels
1730
1731##
1732
1733# ------------------------------------------------------------------------------
1734
1735#Method bool scalePixels(const SkPixmap& dst, SkFilterQuality filterQuality) const
1736
Cary Clark78de7512018-02-07 07:27:09 -05001737#In Pixels
Cary Clarkab2621d2018-01-30 10:08:57 -05001738#Line # scales and converts pixels ##
Cary Clarkac47b882018-01-11 10:35:44 -05001739Copies Bitmap to dst, scaling pixels to fit dst.width() and dst.height(), and
Cary Clarkd0530ba2017-09-14 11:25:39 -04001740converting pixels to match dst.colorType and dst.alphaType. Returns true if
1741pixels are copied. Returns false if dst.addr() is nullptr, or dst.rowBytes is
1742less than dst SkImageInfo::minRowBytes.
1743
Cary Clarkac47b882018-01-11 10:35:44 -05001744Pixels are copied only if pixel conversion is possible. If Pixmap colorType is
Cary Clarkd0530ba2017-09-14 11:25:39 -04001745kGray_8_SkColorType, or kAlpha_8_SkColorType; dst Color_Type must match.
Cary Clarkac47b882018-01-11 10:35:44 -05001746If Pixmap colorType is kGray_8_SkColorType, dst Color_Space must match.
1747If Pixmap alphaType is kOpaque_SkAlphaType, dst Alpha_Type must
1748match. If Pixmap colorSpace is nullptr, dst Color_Space must match. Returns
Cary Clarkd0530ba2017-09-14 11:25:39 -04001749false if pixel conversion is not possible.
1750
Cary Clarkac47b882018-01-11 10:35:44 -05001751Returns false if Bitmap width() or height() is zero or negative.
Cary Clarkd0530ba2017-09-14 11:25:39 -04001752
1753Scales the image, with filterQuality, to match dst.width() and dst.height().
1754filterQuality kNone_SkFilterQuality is fastest, typically implemented with
1755Filter_Quality_Nearest_Neighbor. kLow_SkFilterQuality is typically implemented with
1756Filter_Quality_Bilerp. kMedium_SkFilterQuality is typically implemented with
1757Filter_Quality_Bilerp, and Filter_Quality_MipMap when size is reduced.
1758kHigh_SkFilterQuality is slowest, typically implemented with Filter_Quality_BiCubic.
1759
1760#Param dst Image_Info and pixel address to write to ##
Cary Clark682c58d2018-05-16 07:07:07 -04001761#Param filterQuality one of: kNone_SkFilterQuality, kLow_SkFilterQuality,
Cary Clarkd0530ba2017-09-14 11:25:39 -04001762 kMedium_SkFilterQuality, kHigh_SkFilterQuality
1763##
1764
Cary Clarkac47b882018-01-11 10:35:44 -05001765#Return true if pixels are scaled to fit dst ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001766
1767#Example
1768#Image 3
Cary Clark6fc50412017-09-21 12:31:06 -04001769void draw(SkCanvas* canvas) {
1770 SkImageInfo info = SkImageInfo::MakeN32Premul(image->width(), image->height());
1771 std::vector<int32_t> srcPixels;
1772 int rowBytes = image->width() * 4;
1773 srcPixels.resize(image->height() * rowBytes);
1774 SkPixmap pixmap(info, (const void*) &srcPixels.front(), rowBytes);
1775 image->readPixels(pixmap, 0, 0);
1776 for (int offset : { 32, 64, 96 } ) {
1777 info = SkImageInfo::MakeN32Premul(image->width() + offset, image->height());
1778 rowBytes = info.width() * 4;
1779 std::vector<int32_t> dstPixels;
1780 dstPixels.resize(image->height() * rowBytes);
1781 SkPixmap dstmap(info, &dstPixels.front(), rowBytes);
1782 pixmap.scalePixels(dstmap, kMedium_SkFilterQuality);
1783 SkBitmap bitmap;
1784 bitmap.installPixels(dstmap);
1785 canvas->translate(32, 32);
1786 canvas->drawBitmap(bitmap, 0, 0);
1787 }
Cary Clarkd0530ba2017-09-14 11:25:39 -04001788}
1789##
1790
1791#SeeAlso SkCanvas::drawBitmap SkImage::scalePixels
1792
1793##
1794
1795# ------------------------------------------------------------------------------
1796
1797#Method bool erase(SkColor color, const SkIRect& subset) const
1798
Cary Clark78de7512018-02-07 07:27:09 -05001799#In Pixels
Cary Clarkab2621d2018-01-30 10:08:57 -05001800#Line # writes Color to pixels ##
Cary Clarkd0530ba2017-09-14 11:25:39 -04001801Writes color to pixels bounded by subset; returns true on success.
1802Returns false if colorType is kUnknown_SkColorType, or if subset does
1803not intersect bounds().
Cary Clark682c58d2018-05-16 07:07:07 -04001804
Cary Clarkd0530ba2017-09-14 11:25:39 -04001805#Param color Unpremultiplied Color to write ##
1806#Param subset bounding integer Rect of written pixels ##
1807
1808#Return true if pixels are changed ##
1809
1810#Example
Cary Clark2ade9972017-11-02 17:49:34 -04001811#Height 50
Cary Clark6fc50412017-09-21 12:31:06 -04001812 uint32_t storage[2];
1813 SkImageInfo info = SkImageInfo::MakeN32Premul(1, 2);
1814 SkPixmap pixmap(info, storage, info.minRowBytes());
1815 pixmap.erase(SK_ColorBLUE, {0, 0, 1, 1});
1816 pixmap.erase(SK_ColorRED, {0, 1, 1, 2});
1817 SkBitmap bitmap;
1818 canvas->scale(20, 20);
1819 bitmap.installPixels(pixmap);
1820 canvas->drawBitmap(bitmap, 0, 0);
Cary Clarkd0530ba2017-09-14 11:25:39 -04001821##
1822
1823#SeeAlso SkBitmap::erase SkCanvas::clear SkCanvas::drawColor
1824
1825##
1826
1827# ------------------------------------------------------------------------------
1828
Cary Clark682c58d2018-05-16 07:07:07 -04001829#Method bool erase(SkColor color) const
Cary Clarkd0530ba2017-09-14 11:25:39 -04001830
1831Writes color to pixels inside bounds(); returns true on success.
1832Returns false if colorType is kUnknown_SkColorType, or if bounds()
1833is empty.
1834
1835#Param color Unpremultiplied Color to write ##
1836
1837#Return true if pixels are changed ##
1838
1839#Example
Cary Clark2ade9972017-11-02 17:49:34 -04001840#Height 50
Cary Clark6fc50412017-09-21 12:31:06 -04001841 uint32_t storage[2];
1842 SkImageInfo info = SkImageInfo::MakeN32Premul(1, 2);
1843 SkPixmap pixmap(info, storage, info.minRowBytes());
1844 pixmap.erase(SK_ColorBLUE);
1845 SkBitmap bitmap;
1846 canvas->scale(20, 20);
1847 bitmap.installPixels(pixmap);
1848 canvas->drawBitmap(bitmap, 0, 0);
Cary Clarkd0530ba2017-09-14 11:25:39 -04001849##
1850
1851#SeeAlso SkBitmap::erase SkCanvas::clear SkCanvas::drawColor
1852
1853##
1854
1855# ------------------------------------------------------------------------------
1856
1857#Method bool erase(const SkColor4f& color, const SkIRect* subset = nullptr) const
1858
1859Writes color to pixels bounded by subset; returns true on success.
1860if subset is nullptr, writes colors pixels inside bounds(). Returns false if
1861colorType is kUnknown_SkColorType, if subset is not nullptr and does
1862not intersect bounds(), or if subset is nullptr and bounds() is empty.
1863
1864#Param color Unpremultiplied Color to write ##
1865#Param subset bounding integer Rect of pixels to write; may be nullptr ##
1866
1867#Return true if pixels are changed ##
1868
1869#Example
Cary Clark2ade9972017-11-02 17:49:34 -04001870#Height 50
Cary Clark6fc50412017-09-21 12:31:06 -04001871 uint32_t storage[2];
1872 SkImageInfo info = SkImageInfo::MakeN32Premul(1, 2);
1873 SkPixmap pixmap(info, storage, info.minRowBytes());
1874 SkIRect topPixelBounds = {0, 0, 1, 1};
1875 pixmap.erase({ 0.65f, 0.45f, 0.25f, 1 }, &topPixelBounds);
1876 SkIRect bottomPixelBounds = {0, 1, 1, 2};
1877 pixmap.erase({ 0.25f, 0.65f, 0.45f, 1 }, &bottomPixelBounds);
1878 SkBitmap bitmap;
1879 canvas->scale(20, 20);
1880 bitmap.installPixels(pixmap);
1881 canvas->drawBitmap(bitmap, 0, 0);
Cary Clarkd0530ba2017-09-14 11:25:39 -04001882##
1883
1884#SeeAlso SkBitmap::erase SkCanvas::clear SkCanvas::drawColor
1885
1886##
1887
Cary Clarkd0530ba2017-09-14 11:25:39 -04001888#Class SkPixmap ##
1889
1890#Topic Pixmap ##