Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1 | #Topic Pixmap |
Cary Clark | 137b874 | 2018-05-30 09:21:49 -0400 | [diff] [blame] | 2 | #Alias Pixmap_Reference ## |
Cary Clark | e4aa371 | 2017-09-15 02:56:12 -0400 | [diff] [blame] | 3 | |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 4 | #Class SkPixmap |
| 5 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 6 | Pixmap provides a utility to pair SkImageInfo with pixels and row bytes. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 7 | Pixmap is a low level class which provides convenience functions to access |
| 8 | raster destinations. Canvas can not draw Pixmap, nor does Pixmap provide |
| 9 | a direct drawing destination. |
| 10 | |
| 11 | Use Bitmap to draw pixels referenced by Pixmap; use Surface to draw into |
| 12 | pixels referenced by Pixmap. |
| 13 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 14 | Pixmap does not try to manage the lifetime of the pixel memory. Use Pixel_Ref |
| 15 | to manage pixel memory; Pixel_Ref is safe across threads. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 16 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 17 | #Subtopic Overview |
| 18 | #Populate |
| 19 | ## |
| 20 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 21 | #Subtopic Related_Function |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 22 | #Populate |
Cary Clark | 5081eed | 2018-01-22 07:55:48 -0500 | [diff] [blame] | 23 | ## |
| 24 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 25 | #Subtopic Constructor |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 26 | #Populate |
| 27 | ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 28 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 29 | #Subtopic Member_Function |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 30 | #Populate |
| 31 | ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 32 | |
| 33 | #Subtopic Initialization |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 34 | #Line # sets fields for use ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 35 | |
| 36 | # ------------------------------------------------------------------------------ |
| 37 | |
| 38 | #Method SkPixmap() |
| 39 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 40 | #In Initialization |
| 41 | #Line # constructs with default values ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 42 | Creates an empty Pixmap without pixels, with kUnknown_SkColorType, with |
| 43 | kUnknown_SkAlphaType, and with a width and height of zero. Use |
| 44 | reset() to associate pixels, SkColorType, SkAlphaType, width, and height |
| 45 | after Pixmap has been created. |
| 46 | |
| 47 | #Return empty Pixmap ## |
| 48 | |
| 49 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 50 | void draw(SkCanvas* canvas) { |
| 51 | const char* alphas[] = {"Unknown", "Opaque", "Premul", "Unpremul"}; |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 52 | 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 Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 54 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 62 | } |
| 63 | #StdOut |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 64 | width: 0 height: 0 color: kUnknown_SkColorType alpha: kUnknown_SkAlphaType |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 65 | width: 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 Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 76 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 77 | #In Initialization |
| 78 | #Line # constructs from Image_Info, pixels ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 79 | Creates Pixmap from info width, height, SkAlphaType, and SkColorType. |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 80 | addr points to pixels, or nullptr. rowBytes should be info.width() times |
| 81 | info.bytesPerPixel(), or larger. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 82 | |
| 83 | No parameter checking is performed; it is up to the caller to ensure that |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 84 | addr and rowBytes agree with info. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 85 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 86 | The memory lifetime of pixels is managed by the caller. When Pixmap goes |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 87 | out of scope, addr is unaffected. |
| 88 | |
| 89 | Pixmap may be later modified by reset() to change its size, pixel type, or |
| 90 | storage. |
| 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 Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 101 | SkImage::MakeRasterCopy takes const SkPixmap& as an argument. The example |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 102 | constructs a SkPixmap from the brace-delimited parameters. |
| 103 | ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 104 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 109 | SkDebugf("copy alpha only = %s\n", copy->isAlphaOnly() ? "true" : "false"); |
| 110 | #StdOut |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 111 | image alpha only = false |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 112 | copy alpha only = true |
| 113 | ## |
| 114 | ## |
| 115 | |
| 116 | #SeeAlso SkPixmap() reset() SkAlphaType SkColorType |
| 117 | |
| 118 | ## |
| 119 | |
| 120 | # ------------------------------------------------------------------------------ |
| 121 | |
| 122 | #Method void reset() |
| 123 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 124 | #In Initialization |
| 125 | #Line # reuses existing Pixmap with replacement values ## |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 126 | Sets width, height, row bytes to zero; pixel address to nullptr; SkColorType to |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 127 | kUnknown_SkColorType; and SkAlphaType to kUnknown_SkAlphaType. |
| 128 | |
| 129 | The prior pixels are unaffected; it is up to the caller to release pixels |
| 130 | memory if desired. |
| 131 | |
| 132 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 133 | void draw(SkCanvas* canvas) { |
| 134 | const char* alphas[] = {"Unknown", "Opaque", "Premul", "Unpremul"}; |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 135 | 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 Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 137 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 146 | #StdOut |
| 147 | width: 25 height: 35 color: kRGBA_8888_SkColorType alpha: kOpaque_SkAlphaType |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 148 | width: 0 height: 0 color: kUnknown_SkColorType alpha: kUnknown_SkAlphaType |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 149 | ## |
| 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 Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 160 | #In Initialization |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 161 | Sets width, height, SkAlphaType, and SkColorType from info. |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 162 | Sets pixel address from addr, which may be nullptr. |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 163 | Sets row bytes from rowBytes, which should be info.width() times |
| 164 | info.bytesPerPixel(), or larger. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 165 | |
| 166 | Does not check addr. Asserts if built with SK_DEBUG defined and if rowBytes is |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 167 | too small to hold one row of pixels. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 168 | |
| 169 | The memory lifetime pixels are managed by the caller. When Pixmap goes |
| 170 | out 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 Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 178 | #Height 64 |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 179 | void 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 Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 187 | pixmap.reset(SkImageInfo::Make(image->width(), image->height(), colorType, |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 188 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 194 | } |
| 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 Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 205 | #In Initialization |
| 206 | #Line # sets Image_Info Color_Space ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 207 | |
| 208 | Changes Color_Space in Image_Info; preserves width, height, SkAlphaType, and |
| 209 | SkColorType in Image, and leaves pixel address and row bytes unchanged. |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 210 | Color_Space reference count is incremented. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 211 | |
| 212 | #Param colorSpace Color_Space moved to Image_Info ## |
| 213 | |
| 214 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 215 | void draw(SkCanvas* canvas) { |
| 216 | SkPixmap pixmap; |
| 217 | sk_sp<SkColorSpace> colorSpace1 = SkColorSpace::MakeRGB(SkColorSpace::kLinear_RenderTargetGamma, |
| 218 | SkColorSpace::kRec2020_Gamut); |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 219 | SkDebugf("is %sunique\n", colorSpace1->unique() ? "" : "not "); |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 220 | pixmap.setColorSpace(colorSpace1); |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 221 | SkDebugf("is %sunique\n", colorSpace1->unique() ? "" : "not "); |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 222 | } |
| 223 | #StdOut |
| 224 | is unique |
| 225 | is 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 Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 236 | #Deprecated soon |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 237 | ## |
| 238 | |
| 239 | # ------------------------------------------------------------------------------ |
| 240 | |
| 241 | #Method bool SK_WARN_UNUSED_RESULT extractSubset(SkPixmap* subset, const SkIRect& area) const |
| 242 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 243 | #In Initialization |
| 244 | #Line # sets pointer to portion of original ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 245 | Sets subset width, height, pixel address to intersection of Pixmap with area, |
| 246 | if intersection is not empty; and return true. Otherwise, leave subset unchanged |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 247 | and return false. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 248 | |
| 249 | Failing 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 Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 259 | void 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 271 | } |
| 272 | ## |
| 273 | |
| 274 | #SeeAlso reset() SkIRect::intersect |
| 275 | |
| 276 | ## |
| 277 | |
| 278 | #Subtopic Initialization ## |
| 279 | |
| 280 | #Subtopic Image_Info_Access |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 281 | #Line # returns all or part of Image_Info ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 282 | |
| 283 | # ------------------------------------------------------------------------------ |
| 284 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 285 | #Method const SkImageInfo& info() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 286 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 287 | #In Image_Info_Access |
| 288 | #Line # returns Image_Info ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 289 | Returns width, height, Alpha_Type, Color_Type, and Color_Space. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 290 | |
| 291 | #Return reference to ImageInfo ## |
| 292 | |
| 293 | #Example |
| 294 | #Image 3 |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 295 | 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 Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 304 | 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 Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 306 | SkDebugf("width: %d height: %d color: %s alpha: %s\n", info.width(), info.height(), |
| 307 | colors[info.colorType()], alphas[info.alphaType()]); |
| 308 | } |
| 309 | #StdOut |
| 310 | width: 384 height: 384 color: BGRA_8888 alpha: Opaque |
| 311 | ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 312 | ## |
| 313 | |
| 314 | #SeeAlso Image_Info |
| 315 | |
| 316 | ## |
| 317 | |
| 318 | # ------------------------------------------------------------------------------ |
| 319 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 320 | #Method size_t rowBytes() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 321 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 322 | #In Image_Info_Access |
| 323 | #Line # returns interval between rows in bytes ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 324 | Returns row bytes, the interval from one pixel row to the next. Row bytes |
Cary Clark | 2be81cf | 2018-09-13 12:04:30 -0400 | [diff] [blame] | 325 | is at least as large as: #Formula # width() * info().bytesPerPixel() ##. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 326 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 327 | Returns zero if colorType is kUnknown_SkColorType. |
| 328 | It is up to the Bitmap creator to ensure that row bytes is a useful value. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 329 | |
| 330 | #Return byte length of pixel row ## |
| 331 | |
| 332 | #Example |
| 333 | SkPixmap badPixmap = {SkImageInfo::MakeA8(4, 4), nullptr, 2}; |
| 334 | SkPixmap okPixmap = {SkImageInfo::MakeA8(4, 4), nullptr, 8}; |
| 335 | for (auto& pixmap : { badPixmap, okPixmap } ) { |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 336 | SkDebugf("rowBytes: %d minRowBytes: %d\n", pixmap.rowBytes(), |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 337 | pixmap.info().minRowBytes()); |
| 338 | } |
| 339 | #StdOut |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 340 | rowBytes: 2 minRowBytes: 4 |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 341 | rowBytes: 8 minRowBytes: 4 |
| 342 | ## |
| 343 | ## |
| 344 | |
| 345 | #SeeAlso addr() info() SkImageInfo::minRowBytes |
| 346 | |
| 347 | ## |
| 348 | |
| 349 | # ------------------------------------------------------------------------------ |
| 350 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 351 | #Method const void* addr() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 352 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 353 | #In Image_Info_Access |
| 354 | #Line # returns readable pixel address as void pointer ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 355 | Returns pixel address, the base address corresponding to the pixel origin. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 356 | |
| 357 | It 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 Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 363 | 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 |
| 375 | pixels address: 0x7f2a440bb010 |
| 376 | inset address: 0x7f2a440fb210 |
| 377 | ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 378 | ## |
| 379 | |
| 380 | #SeeAlso addr(int x, int y) addr8 addr16 addr32 addr64 info() rowBytes() |
| 381 | |
| 382 | ## |
| 383 | |
| 384 | # ------------------------------------------------------------------------------ |
| 385 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 386 | #Method int width() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 387 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 388 | #In Image_Info_Access |
| 389 | #Line # returns pixel column count ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 390 | Returns pixel count in each pixel row. Should be equal or less than: |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 391 | |
Cary Clark | 2be81cf | 2018-09-13 12:04:30 -0400 | [diff] [blame] | 392 | #Formula # rowBytes() / info().bytesPerPixel() ##. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 393 | |
| 394 | #Return pixel width in Image_Info ## |
| 395 | |
| 396 | #Example |
| 397 | SkImageInfo info = SkImageInfo::MakeA8(16, 32); |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 398 | SkPixmap pixmap(info, nullptr, 64); |
| 399 | SkDebugf("pixmap width: %d info width: %d\n", pixmap.width(), info.width()); |
| 400 | #StdOut |
| 401 | pixmap width: 16 info width: 16 |
| 402 | ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 403 | ## |
| 404 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 405 | #SeeAlso height() SkImageInfo::width() |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 406 | |
| 407 | ## |
| 408 | |
| 409 | # ------------------------------------------------------------------------------ |
| 410 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 411 | #Method int height() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 412 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 413 | #In Image_Info_Access |
| 414 | #Line # returns pixel row count ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 415 | Returns pixel row count. |
| 416 | |
| 417 | #Return pixel height in Image_Info ## |
| 418 | |
| 419 | #Example |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 420 | SkPixmap pixmap(SkImageInfo::MakeA8(16, 32), nullptr, 64); |
| 421 | SkDebugf("pixmap height: %d info height: %d\n", pixmap.height(), pixmap.info().height()); |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 422 | #StdOut |
| 423 | pixmap height: 32 info height: 32 |
| 424 | ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 425 | ## |
| 426 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 427 | #SeeAlso width() ImageInfo::height() |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 428 | |
| 429 | ## |
| 430 | |
| 431 | # ------------------------------------------------------------------------------ |
| 432 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 433 | #Method SkColorType colorType() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 434 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 435 | #In Image_Info_Access |
| 436 | #Line # returns Image_Info Color_Type ## |
Cary Clark | 1a8d762 | 2018-03-05 13:26:16 -0500 | [diff] [blame] | 437 | Returns Color_Type, one of: #list_of_color_types#. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 438 | |
| 439 | #Return Color_Type in Image_Info ## |
| 440 | |
| 441 | #Example |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 442 | 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 Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 444 | SkPixmap pixmap(SkImageInfo::MakeA8(16, 32), nullptr, 64); |
| 445 | SkDebugf("color type: k" "%s" "_SkColorType\n", colors[pixmap.colorType()]); |
| 446 | #StdOut |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 447 | color type: kAlpha_8_SkColorType |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 448 | ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 449 | ## |
| 450 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 451 | #SeeAlso alphaType() SkImageInfo::colorType |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 452 | |
| 453 | ## |
| 454 | |
| 455 | # ------------------------------------------------------------------------------ |
| 456 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 457 | #Method SkAlphaType alphaType() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 458 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 459 | #In Image_Info_Access |
| 460 | #Line # returns Image_Info Alpha_Type ## |
Cary Clark | 681287e | 2018-03-16 11:34:15 -0400 | [diff] [blame] | 461 | Returns Alpha_Type, one of: #list_of_alpha_types#. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 462 | |
| 463 | #Return Alpha_Type in Image_Info ## |
| 464 | |
| 465 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 466 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 469 | #StdOut |
| 470 | alpha type: kPremul_SkAlphaType |
| 471 | ## |
| 472 | ## |
| 473 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 474 | #SeeAlso colorType() SkImageInfo::alphaType |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 475 | |
| 476 | ## |
| 477 | |
| 478 | # ------------------------------------------------------------------------------ |
| 479 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 480 | #Method SkColorSpace* colorSpace() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 481 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 482 | #In Image_Info_Access |
| 483 | #Line # returns Image_Info Color_Space ## |
Cary Clark | 681287e | 2018-03-16 11:34:15 -0400 | [diff] [blame] | 484 | Returns Color_Space, the range of colors, associated with Image_Info. The |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 485 | reference count of Color_Space is unchanged. The returned Color_Space is |
| 486 | immutable. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 487 | |
Cary Clark | 681287e | 2018-03-16 11:34:15 -0400 | [diff] [blame] | 488 | #Return Color_Space in Image_Info, or nullptr ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 489 | |
| 490 | #Example |
| 491 | #Description |
| 492 | SkColorSpace::MakeSRGBLinear creates Color_Space with linear gamma |
| 493 | and an sRGB gamut. This Color_Space gamma is not close to sRGB gamma. |
| 494 | ## |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 495 | SkPixmap pixmap(SkImageInfo::MakeN32(16, 32, kPremul_SkAlphaType, |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 496 | 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 |
| 503 | gammaCloseToSRGB: false gammaIsLinear: true isSRGB: false |
| 504 | ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 505 | ## |
| 506 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 507 | #SeeAlso Color_Space SkImageInfo::colorSpace |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 508 | |
| 509 | ## |
| 510 | |
| 511 | # ------------------------------------------------------------------------------ |
| 512 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 513 | #Method bool isOpaque() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 514 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 515 | #In Image_Info_Access |
| 516 | #Line # returns true if Image_Info describes opaque pixels ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 517 | Returns true if Alpha_Type is kOpaque_SkAlphaType. |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 518 | Does not check if Color_Type allows Alpha, or if any pixel value has |
| 519 | transparency. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 520 | |
| 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 Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 527 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 541 | #StdOut |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 542 | isOpaque: false |
| 543 | isOpaque: false |
| 544 | isOpaque: true |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 545 | isOpaque: true |
| 546 | ## |
| 547 | ## |
| 548 | |
| 549 | #SeeAlso computeIsOpaque SkImageInfo::isOpaque |
| 550 | |
| 551 | ## |
| 552 | |
| 553 | # ------------------------------------------------------------------------------ |
| 554 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 555 | #Method SkIRect bounds() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 556 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 557 | #In Image_Info_Access |
| 558 | #Line # returns width and height as Rectangle ## |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 559 | Returns IRect { 0, 0, width(), height() }. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 560 | |
| 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 Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 566 | SkPixmap pixmap(SkImageInfo::MakeA8(width, height), nullptr, width); |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 567 | SkDebugf("width: %d height: %d empty: %s\n", width, height, |
| 568 | pixmap.bounds().isEmpty() ? "true" : "false"); |
| 569 | } |
| 570 | } |
| 571 | #StdOut |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 572 | width: 0 height: 0 empty: true |
| 573 | width: 0 height: 2 empty: true |
| 574 | width: 2 height: 0 empty: true |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 575 | width: 2 height: 2 empty: false |
| 576 | ## |
| 577 | ## |
| 578 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 579 | #SeeAlso height() width() IRect |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 580 | |
| 581 | ## |
| 582 | |
| 583 | # ------------------------------------------------------------------------------ |
| 584 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 585 | #Method int rowBytesAsPixels() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 586 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 587 | #In Image_Info_Access |
| 588 | #Line # returns interval between rows in pixels ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 589 | |
| 590 | Returns number of pixels that fit on row. Should be greater than or equal to |
| 591 | width(). |
| 592 | |
| 593 | #Return maximum pixels per row ## |
| 594 | |
| 595 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 596 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 600 | #StdOut |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 601 | rowBytes: 4 rowBytesAsPixels: 1 |
| 602 | rowBytes: 5 rowBytesAsPixels: 1 |
| 603 | rowBytes: 6 rowBytesAsPixels: 1 |
| 604 | rowBytes: 7 rowBytesAsPixels: 1 |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 605 | rowBytes: 8 rowBytesAsPixels: 2 |
| 606 | ## |
| 607 | ## |
| 608 | |
| 609 | #SeeAlso rowBytes shiftPerPixel width SkImageInfo::bytesPerPixel |
| 610 | |
| 611 | ## |
| 612 | |
| 613 | # ------------------------------------------------------------------------------ |
| 614 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 615 | #Method int shiftPerPixel() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 616 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 617 | #In Image_Info_Access |
| 618 | #Line # returns bit shift from pixels to bytes ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 619 | Returns bit shift converting row bytes to row pixels. |
| 620 | Returns zero for kUnknown_SkColorType. |
| 621 | |
| 622 | #Return one of: 0, 1, 2, 3; left shift to convert pixels to bytes ## |
| 623 | |
| 624 | #Example |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 625 | 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 Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 627 | SkImageInfo info = SkImageInfo::MakeA8(1, 1); |
| 628 | for (SkColorType colorType : { kUnknown_SkColorType, kAlpha_8_SkColorType, |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 629 | kRGB_565_SkColorType, kARGB_4444_SkColorType, |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 630 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 637 | #StdOut |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 638 | color: kUnknown_SkColorType bytesPerPixel: 0 shiftPerPixel: 0 |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 639 | color: kAlpha_8_SkColorType bytesPerPixel: 1 shiftPerPixel: 0 |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 640 | color: kRGB_565_SkColorType bytesPerPixel: 2 shiftPerPixel: 1 |
| 641 | color: kARGB_4444_SkColorType bytesPerPixel: 2 shiftPerPixel: 1 |
| 642 | color: kRGBA_8888_SkColorType bytesPerPixel: 4 shiftPerPixel: 2 |
| 643 | color: kBGRA_8888_SkColorType bytesPerPixel: 4 shiftPerPixel: 2 |
| 644 | color: kGray_8_SkColorType bytesPerPixel: 1 shiftPerPixel: 0 |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 645 | color: kRGBA_F16_SkColorType bytesPerPixel: 8 shiftPerPixel: 3 |
| 646 | ## |
| 647 | ## |
| 648 | |
| 649 | #SeeAlso rowBytes rowBytesAsPixels width SkImageInfo::bytesPerPixel |
| 650 | |
| 651 | ## |
| 652 | |
| 653 | # ------------------------------------------------------------------------------ |
| 654 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 655 | #Method size_t computeByteSize() const |
| 656 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 657 | #In Image_Info_Access |
| 658 | #Line # returns size required for pixels ## |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 659 | Returns minimum memory required for pixel storage. |
| 660 | Does not include unused memory on last row when rowBytesAsPixels exceeds width(). |
| 661 | Returns zero if result does not fit in size_t. |
| 662 | Returns zero if height() or width() is 0. |
| 663 | Returns height() times rowBytes if colorType is kUnknown_SkColorType. |
| 664 | |
| 665 | #Return size in bytes of image buffer ## |
| 666 | |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 667 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 668 | 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 Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 672 | pixmap.reset(imageInfo, nullptr, width * 5); |
| 673 | SkDebugf("width: %7d height: %7d computeByteSize: %13lld\n", width, height, |
| 674 | pixmap.computeByteSize()); |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 675 | } |
| 676 | } |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 677 | #StdOut |
Ben Wagner | 29380bd | 2017-10-09 14:43:00 -0400 | [diff] [blame] | 678 | width: 1 height: 1 computeByteSize: 4 |
| 679 | width: 1 height: 1000 computeByteSize: 4999 |
| 680 | width: 1 height: 1000000 computeByteSize: 4999999 |
| 681 | width: 1000 height: 1 computeByteSize: 4000 |
| 682 | width: 1000 height: 1000 computeByteSize: 4999000 |
| 683 | width: 1000 height: 1000000 computeByteSize: 4999999000 |
| 684 | width: 1000000 height: 1 computeByteSize: 4000000 |
| 685 | width: 1000000 height: 1000 computeByteSize: 4999000000 |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 686 | width: 1000000 height: 1000000 computeByteSize: 4999999000000 |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 687 | ## |
| 688 | ## |
| 689 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 690 | #SeeAlso SkImageInfo::computeByteSize |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 691 | |
| 692 | ## |
| 693 | |
| 694 | #Subtopic Image_Info_Access ## |
| 695 | |
| 696 | #Subtopic Reader |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 697 | #Line # examine pixel value ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 698 | |
| 699 | # ------------------------------------------------------------------------------ |
| 700 | |
| 701 | #Method bool computeIsOpaque() const |
| 702 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 703 | #In Reader |
| 704 | #Line # returns true if all pixels are opaque ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 705 | Returns true if all pixels are opaque. Color_Type determines how pixels |
| 706 | are encoded, and whether pixel describes Alpha. Returns true for Color_Types |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 707 | without alpha in each pixel; for other Color_Types, returns true if all |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 708 | pixels have alpha values equivalent to 1.0 or greater. |
| 709 | |
| 710 | For Color_Types kRGB_565_SkColorType or kGray_8_SkColorType: always |
| 711 | returns true. For Color_Types kAlpha_8_SkColorType, kBGRA_8888_SkColorType, |
| 712 | kRGBA_8888_SkColorType: returns true if all pixel Alpha values are 255. |
| 713 | For Color_Type kARGB_4444_SkColorType: returns true if all pixel Alpha values are 15. |
| 714 | For kRGBA_F16_SkColorType: returns true if all pixel Alpha values are 1.0 or |
| 715 | greater. |
| 716 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 717 | Returns false for kUnknown_SkColorType. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 718 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 719 | #Return true if all pixels have opaque values or Color_Type is opaque ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 720 | |
| 721 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 722 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 735 | } |
| 736 | #StdOut |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 737 | computeIsOpaque: false |
| 738 | computeIsOpaque: true |
| 739 | computeIsOpaque: false |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 740 | computeIsOpaque: 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 Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 752 | #In Reader |
| 753 | #Line # returns one pixel as Unpremultiplied Color ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 754 | Returns pixel at (x, y) as Unpremultiplied Color. |
| 755 | Returns black with Alpha if Color_Type is kAlpha_8_SkColorType. |
| 756 | |
| 757 | Input is not validated: out of bounds values of x or y trigger an assert() if |
| 758 | built with SK_DEBUG defined; and returns undefined values or may crash if |
| 759 | SK_RELEASE is defined. Fails if Color_Type is kUnknown_SkColorType or |
| 760 | pixel address is nullptr. |
| 761 | |
| 762 | Color_Space in Image_Info is ignored. Some Color precision may be lost in the |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 763 | conversion to Unpremultiplied Color; original pixel data may have additional |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 764 | precision. |
| 765 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 766 | #Param x column index, zero or greater, and less than width() ## |
| 767 | #Param y row index, zero or greater, and less than height() ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 768 | |
| 769 | #Return pixel converted to Unpremultiplied Color ## |
| 770 | |
| 771 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 772 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 793 | #StdOut |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 794 | Premultiplied: |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 795 | (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 Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 799 | Unpremultiplied: |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 800 | (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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 804 | ## |
| 805 | ## |
| 806 | |
Cary Clark | 8fe2940 | 2018-09-20 17:31:43 -0400 | [diff] [blame] | 807 | #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 | |
| 815 | Looks up the pixel at (x,y) and return its alpha component, normalized to [0..1]. |
| 816 | This 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 828 | |
| 829 | ## |
| 830 | |
| 831 | #Subtopic Reader ## |
| 832 | |
| 833 | #Subtopic Readable_Address |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 834 | #Line # returns read only pixels ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 835 | |
| 836 | # ------------------------------------------------------------------------------ |
| 837 | |
| 838 | #Method const void* addr(int x, int y) const |
| 839 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 840 | #In Readable_Address |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 841 | Returns readable pixel address at (x, y). Returns nullptr if Pixel_Ref is nullptr. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 842 | |
| 843 | Input is not validated: out of bounds values of x or y trigger an assert() if |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 844 | built with SK_DEBUG defined. Returns nullptr if Color_Type is kUnknown_SkColorType. |
| 845 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 846 | Performs a lookup of pixel size; for better performance, call |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 847 | one of: addr8, addr16, addr32, addr64, or addrF16. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 848 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 849 | #Param x column index, zero or greater, and less than width() ## |
| 850 | #Param y row index, zero or greater, and less than height() ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 851 | |
| 852 | #Return readable generic pointer to pixel ## |
| 853 | |
| 854 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 855 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 860 | SkDebugf("pixmap.addr(1, 2) %c= &storage[1 + 2 * w]\n", |
| 861 | pixmap.addr(1, 2) == &storage[1 + 2 * w] ? '=' : '!'); |
| 862 | #StdOut |
| 863 | pixmap.addr(1, 2) == &storage[1 + 2 * w] |
| 864 | ## |
| 865 | ## |
| 866 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 867 | #SeeAlso addr8 addr16 addr32 addr64 addrF16 getColor writable_addr SkBitmap::getAddr |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 868 | |
| 869 | ## |
| 870 | |
| 871 | # ------------------------------------------------------------------------------ |
| 872 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 873 | #Method const uint8_t* addr8() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 874 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 875 | #In Readable_Address |
| 876 | #Line # returns readable pixel address as 8-bit pointer ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 877 | Returns readable base pixel address. Result is addressable as unsigned 8-bit bytes. |
| 878 | Will trigger an assert() if Color_Type is not kAlpha_8_SkColorType or |
| 879 | kGray_8_SkColorType, and is built with SK_DEBUG defined. |
| 880 | |
| 881 | One byte corresponds to one pixel. |
| 882 | |
| 883 | #Return readable unsigned 8-bit pointer to pixels ## |
| 884 | |
| 885 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 886 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 891 | SkDebugf("pixmap.addr8() %c= storage\n", |
| 892 | pixmap.addr8() == storage ? '=' : '!'); |
| 893 | #StdOut |
| 894 | pixmap.addr8() == storage |
| 895 | ## |
| 896 | ## |
| 897 | |
| 898 | #SeeAlso addr() addr16 addr32 addr64 addrF16 getColor writable_addr writable_addr8 |
| 899 | |
| 900 | ## |
| 901 | |
| 902 | # ------------------------------------------------------------------------------ |
| 903 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 904 | #Method const uint16_t* addr16() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 905 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 906 | #In Readable_Address |
| 907 | #Line # returns readable pixel address as 16-bit pointer ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 908 | Returns readable base pixel address. Result is addressable as unsigned 16-bit words. |
| 909 | Will trigger an assert() if Color_Type is not kRGB_565_SkColorType or |
| 910 | kARGB_4444_SkColorType, and is built with SK_DEBUG defined. |
| 911 | |
| 912 | One word corresponds to one pixel. |
| 913 | |
| 914 | #Return readable unsigned 16-bit pointer to pixels ## |
| 915 | |
| 916 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 917 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 922 | SkDebugf("pixmap.addr16() %c= storage\n", |
| 923 | pixmap.addr16() == storage ? '=' : '!'); |
| 924 | #StdOut |
| 925 | pixmap.addr16() == storage |
| 926 | ## |
| 927 | ## |
| 928 | |
| 929 | #SeeAlso addr() addr8 addr32 addr64 addrF16 getColor writable_addr writable_addr16 |
| 930 | |
| 931 | ## |
| 932 | |
| 933 | # ------------------------------------------------------------------------------ |
| 934 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 935 | #Method const uint32_t* addr32() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 936 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 937 | #In Readable_Address |
| 938 | #Line # returns readable pixel address as 32-bit pointer ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 939 | Returns readable base pixel address. Result is addressable as unsigned 32-bit words. |
| 940 | Will trigger an assert() if Color_Type is not kRGBA_8888_SkColorType or |
| 941 | kBGRA_8888_SkColorType, and is built with SK_DEBUG defined. |
| 942 | |
| 943 | One word corresponds to one pixel. |
| 944 | |
| 945 | #Return readable unsigned 32-bit pointer to pixels ## |
| 946 | |
| 947 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 948 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 953 | SkDebugf("pixmap.addr32() %c= storage\n", |
| 954 | pixmap.addr32() == storage ? '=' : '!'); |
| 955 | #StdOut |
| 956 | pixmap.addr32() == storage |
| 957 | ## |
| 958 | ## |
| 959 | |
| 960 | #SeeAlso addr() addr8 addr16 addr64 addrF16 getColor writable_addr writable_addr32 |
| 961 | |
| 962 | ## |
| 963 | |
| 964 | # ------------------------------------------------------------------------------ |
| 965 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 966 | #Method const uint64_t* addr64() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 967 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 968 | #In Readable_Address |
| 969 | #Line # returns readable pixel address as 64-bit pointer ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 970 | Returns readable base pixel address. Result is addressable as unsigned 64-bit words. |
| 971 | Will trigger an assert() if Color_Type is not kRGBA_F16_SkColorType and is built |
| 972 | with SK_DEBUG defined. |
| 973 | |
| 974 | One word corresponds to one pixel. |
| 975 | |
| 976 | #Return readable unsigned 64-bit pointer to pixels ## |
| 977 | |
| 978 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 979 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 984 | SkDebugf("pixmap.addr64() %c= storage\n", |
| 985 | pixmap.addr64() == storage ? '=' : '!'); |
| 986 | #StdOut |
| 987 | pixmap.addr64() == storage |
| 988 | ## |
| 989 | ## |
| 990 | |
| 991 | #SeeAlso addr() addr8 addr16 addr32 addrF16 getColor writable_addr writable_addr64 |
| 992 | |
| 993 | ## |
| 994 | |
| 995 | # ------------------------------------------------------------------------------ |
| 996 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 997 | #Method const uint16_t* addrF16() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 998 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 999 | #In Readable_Address |
| 1000 | #Line # returns readable pixel component address as 16-bit pointer ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1001 | Returns readable base pixel address. Result is addressable as unsigned 16-bit words. |
| 1002 | Will trigger an assert() if Color_Type is not kRGBA_F16_SkColorType and is built |
| 1003 | with SK_DEBUG defined. |
| 1004 | |
| 1005 | Each word represents one color component encoded as a half float. |
| 1006 | Four words correspond to one pixel. |
| 1007 | |
| 1008 | #Return readable unsigned 16-bit pointer to first component of pixels ## |
| 1009 | |
| 1010 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1011 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1016 | SkDebugf("pixmap.addrF16() %c= storage\n", |
| 1017 | pixmap.addrF16() == storage ? '=' : '!'); |
| 1018 | #StdOut |
| 1019 | pixmap.addrF16() == storage |
| 1020 | ## |
| 1021 | ## |
| 1022 | |
| 1023 | #SeeAlso addr() addr8 addr16 addr32 addr64 getColor writable_addr writable_addrF16 |
| 1024 | |
| 1025 | ## |
| 1026 | |
| 1027 | # ------------------------------------------------------------------------------ |
| 1028 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1029 | #Method const uint8_t* addr8(int x, int y) const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1030 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1031 | #In Readable_Address |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1032 | Returns readable pixel address at (x, y). |
| 1033 | |
| 1034 | Input is not validated: out of bounds values of x or y trigger an assert() if |
| 1035 | built with SK_DEBUG defined. |
| 1036 | |
| 1037 | Will trigger an assert() if Color_Type is not kAlpha_8_SkColorType or |
| 1038 | kGray_8_SkColorType, and is built with SK_DEBUG defined. |
| 1039 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1040 | #Param x column index, zero or greater, and less than width() ## |
| 1041 | #Param y row index, zero or greater, and less than height() ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1042 | |
| 1043 | #Return readable unsigned 8-bit pointer to pixel at (x, y) ## |
| 1044 | |
| 1045 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1046 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1053 | #StdOut |
| 1054 | pixmap.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 Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1064 | #Method const uint16_t* addr16(int x, int y) const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1065 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1066 | #In Readable_Address |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1067 | Returns readable pixel address at (x, y). |
| 1068 | |
| 1069 | Input is not validated: out of bounds values of x or y trigger an assert() if |
| 1070 | built with SK_DEBUG defined. |
| 1071 | |
| 1072 | Will trigger an assert() if Color_Type is not kRGB_565_SkColorType or |
| 1073 | kARGB_4444_SkColorType, and is built with SK_DEBUG defined. |
| 1074 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1075 | #Param x column index, zero or greater, and less than width() ## |
| 1076 | #Param y row index, zero or greater, and less than height() ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1077 | |
| 1078 | #Return readable unsigned 16-bit pointer to pixel at (x, y) ## |
| 1079 | |
| 1080 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1081 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1086 | SkDebugf("pixmap.addr16(1, 2) %c= &storage[1 + 2 * w]\n", |
| 1087 | pixmap.addr16(1, 2) == &storage[1 + 2 * w] ? '=' : '!'); |
| 1088 | #StdOut |
| 1089 | pixmap.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 Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1099 | #Method const uint32_t* addr32(int x, int y) const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1100 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1101 | #In Readable_Address |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1102 | Returns readable pixel address at (x, y). |
| 1103 | |
| 1104 | Input is not validated: out of bounds values of x or y trigger an assert() if |
| 1105 | built with SK_DEBUG defined. |
| 1106 | |
| 1107 | Will trigger an assert() if Color_Type is not kRGBA_8888_SkColorType or |
| 1108 | kBGRA_8888_SkColorType, and is built with SK_DEBUG defined. |
| 1109 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1110 | #Param x column index, zero or greater, and less than width() ## |
| 1111 | #Param y row index, zero or greater, and less than height() ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1112 | |
| 1113 | #Return readable unsigned 32-bit pointer to pixel at (x, y) ## |
| 1114 | |
| 1115 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1116 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1121 | SkDebugf("pixmap.addr32(1, 2) %c= &storage[1 + 2 * w]\n", |
| 1122 | pixmap.addr32(1, 2) == &storage[1 + 2 * w] ? '=' : '!'); |
| 1123 | #StdOut |
| 1124 | pixmap.addr32(1, 2) == &storage[1 + 2 * w] |
| 1125 | ## |
| 1126 | ## |
| 1127 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1128 | #SeeAlso addr() addr8 addr16 addr64 addrF16 getColor writable_addr writable_addr64 |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1129 | |
| 1130 | ## |
| 1131 | |
| 1132 | # ------------------------------------------------------------------------------ |
| 1133 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1134 | #Method const uint64_t* addr64(int x, int y) const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1135 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1136 | #In Readable_Address |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1137 | Returns readable pixel address at (x, y). |
| 1138 | |
| 1139 | Input is not validated: out of bounds values of x or y trigger an assert() if |
| 1140 | built with SK_DEBUG defined. |
| 1141 | |
| 1142 | Will trigger an assert() if Color_Type is not kRGBA_F16_SkColorType and is built |
| 1143 | with SK_DEBUG defined. |
| 1144 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1145 | #Param x column index, zero or greater, and less than width() ## |
| 1146 | #Param y row index, zero or greater, and less than height() ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1147 | |
| 1148 | #Return readable unsigned 64-bit pointer to pixel at (x, y) ## |
| 1149 | |
| 1150 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1151 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1156 | SkDebugf("pixmap.addr64(1, 2) %c= &storage[1 + 2 * w]\n", |
| 1157 | pixmap.addr64(1, 2) == &storage[1 + 2 * w] ? '=' : '!'); |
| 1158 | #StdOut |
| 1159 | pixmap.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 Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1169 | #Method const uint16_t* addrF16(int x, int y) const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1170 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1171 | #In Readable_Address |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1172 | Returns readable pixel address at (x, y). |
| 1173 | |
| 1174 | Input is not validated: out of bounds values of x or y trigger an assert() if |
| 1175 | built with SK_DEBUG defined. |
| 1176 | |
| 1177 | Will trigger an assert() if Color_Type is not kRGBA_F16_SkColorType and is built |
| 1178 | with SK_DEBUG defined. |
| 1179 | |
| 1180 | Each unsigned 16-bit word represents one color component encoded as a half float. |
| 1181 | Four words correspond to one pixel. |
| 1182 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1183 | #Param x column index, zero or greater, and less than width() ## |
| 1184 | #Param y row index, zero or greater, and less than height() ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1185 | |
| 1186 | #Return readable unsigned 16-bit pointer to pixel component at (x, y) ## |
| 1187 | |
| 1188 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1189 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1198 | #StdOut |
| 1199 | pixmap.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 Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 1210 | #Line # returns writable pixels ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1211 | |
| 1212 | # ------------------------------------------------------------------------------ |
| 1213 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1214 | #Method void* writable_addr() const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1215 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1216 | #In Writable_Address |
| 1217 | #Line # returns writable pixel address as void pointer ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1218 | Returns writable base pixel address. |
| 1219 | |
| 1220 | #Return writable generic base pointer to pixels ## |
| 1221 | |
| 1222 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1223 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1234 | pixmap.getColor(0, 0) == 0xFFFFFFFF ? '=' : '!'); |
| 1235 | #StdOut |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1236 | pixmap.writable_addr() == (void *)storage |
| 1237 | pixmap.getColor(0, 1) == 0x00000000 |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1238 | pixmap.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 Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1248 | #Method void* writable_addr(int x, int y) const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1249 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1250 | #In Writable_Address |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1251 | Returns writable pixel address at (x, y). |
| 1252 | |
| 1253 | Input is not validated: out of bounds values of x or y trigger an assert() if |
| 1254 | built with SK_DEBUG defined. Returns zero if Color_Type is kUnknown_SkColorType. |
| 1255 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1256 | #Param x column index, zero or greater, and less than width() ## |
| 1257 | #Param y row index, zero or greater, and less than height() ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1258 | |
| 1259 | #Return writable generic pointer to pixel ## |
| 1260 | |
| 1261 | #Example |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1262 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1273 | pixmap.getColor(1, 2) == 0xFFFFFFFF ? '=' : '!'); |
| 1274 | #StdOut |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1275 | pixmap.writable_addr() == (void *)storage |
| 1276 | pixmap.getColor(0, 0) == 0x00000000 |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1277 | pixmap.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 Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1287 | #Method uint8_t* writable_addr8(int x, int y) const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1288 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1289 | #In Writable_Address |
| 1290 | #Line # returns writable pixel address as 8-bit pointer ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1291 | Returns writable pixel address at (x, y). Result is addressable as unsigned |
| 1292 | 8-bit bytes. Will trigger an assert() if Color_Type is not kAlpha_8_SkColorType |
| 1293 | or kGray_8_SkColorType, and is built with SK_DEBUG defined. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1294 | |
| 1295 | One byte corresponds to one pixel. |
| 1296 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1297 | #Param x column index, zero or greater, and less than width() ## |
| 1298 | #Param y row index, zero or greater, and less than height() ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1299 | |
| 1300 | #Return writable unsigned 8-bit pointer to pixels ## |
| 1301 | |
| 1302 | #Example |
| 1303 | #Height 64 |
| 1304 | #Description |
| 1305 | Altering pixels after drawing Bitmap is not guaranteed to affect subsequent |
| 1306 | drawing on all platforms. Adding a second SkBitmap::installPixels after editing |
| 1307 | pixel memory is safer. |
| 1308 | ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1309 | void 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1324 | } |
| 1325 | ## |
| 1326 | |
| 1327 | #SeeAlso writable_addr writable_addr16 writable_addr32 writable_addr64 writable_addrF16 addr() addr8 |
| 1328 | |
| 1329 | ## |
| 1330 | |
| 1331 | # ------------------------------------------------------------------------------ |
| 1332 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1333 | #Method uint16_t* writable_addr16(int x, int y) const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1334 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1335 | #In Writable_Address |
| 1336 | #Line # returns writable pixel address as 16-bit pointer ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1337 | Returns writable_addr pixel address at (x, y). Result is addressable as unsigned |
| 1338 | 16-bit words. Will trigger an assert() if Color_Type is not kRGB_565_SkColorType |
| 1339 | or kARGB_4444_SkColorType, and is built with SK_DEBUG defined. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1340 | |
| 1341 | One word corresponds to one pixel. |
| 1342 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1343 | #Param x column index, zero or greater, and less than width() ## |
| 1344 | #Param y row index, zero or greater, and less than height() ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1345 | |
| 1346 | #Return writable unsigned 16-bit pointer to pixel ## |
| 1347 | |
| 1348 | #Example |
| 1349 | #Description |
| 1350 | Draw a five by five bitmap, and draw it again with a center black pixel. |
| 1351 | The low nibble of the 16-bit word is Alpha. |
| 1352 | ## |
| 1353 | #Height 64 |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1354 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1367 | 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 Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1376 | #Method uint32_t* writable_addr32(int x, int y) const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1377 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1378 | #In Writable_Address |
| 1379 | #Line # returns writable pixel address as 32-bit pointer ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1380 | Returns writable pixel address at (x, y). Result is addressable as unsigned |
| 1381 | 32-bit words. Will trigger an assert() if Color_Type is not |
| 1382 | kRGBA_8888_SkColorType or kBGRA_8888_SkColorType, and is built with SK_DEBUG |
| 1383 | defined. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1384 | |
| 1385 | One word corresponds to one pixel. |
| 1386 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1387 | #Param x column index, zero or greater, and less than width() ## |
| 1388 | #Param y row index, zero or greater, and less than height() ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1389 | |
| 1390 | #Return writable unsigned 32-bit pointer to pixel ## |
| 1391 | |
| 1392 | #Example |
| 1393 | #Image 4 |
| 1394 | #Height 72 |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1395 | 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 Clark | 4d75975 | 2018-06-19 12:57:43 -0400 | [diff] [blame] | 1403 | *pixmap.writable_addr32(x, y) = |
| 1404 | *pixmap.writable_addr32(pixmap.width() - x, pixmap.height() - y); |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1405 | } |
| 1406 | } |
| 1407 | } |
| 1408 | SkBitmap bitmap; |
| 1409 | bitmap.installPixels(pixmap); |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1410 | 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 Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1419 | #Method uint64_t* writable_addr64(int x, int y) const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1420 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1421 | #In Writable_Address |
| 1422 | #Line # returns writable pixel address as 64-bit pointer ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1423 | Returns writable pixel address at (x, y). Result is addressable as unsigned |
| 1424 | 64-bit words. Will trigger an assert() if Color_Type is not |
| 1425 | kRGBA_F16_SkColorType and is built with SK_DEBUG defined. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1426 | |
| 1427 | One word corresponds to one pixel. |
| 1428 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1429 | #Param x column index, zero or greater, and less than width() ## |
| 1430 | #Param y row index, zero or greater, and less than height() ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1431 | |
| 1432 | #Return writable unsigned 64-bit pointer to pixel ## |
| 1433 | |
| 1434 | #Example |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1435 | #Height 40 |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1436 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1447 | 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 Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1456 | #Method uint16_t* writable_addrF16(int x, int y) const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1457 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1458 | #In Writable_Address |
| 1459 | #Line # returns writable pixel component address as 16-bit pointer ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1460 | Returns writable pixel address at (x, y). Result is addressable as unsigned |
| 1461 | 16-bit words. Will trigger an assert() if Color_Type is not |
| 1462 | kRGBA_F16_SkColorType and is built with SK_DEBUG defined. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1463 | |
| 1464 | Each word represents one color component encoded as a half float. |
| 1465 | Four words correspond to one pixel. |
| 1466 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1467 | #Param x column index, zero or greater, and less than width() ## |
| 1468 | #Param y row index, zero or greater, and less than height() ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1469 | |
| 1470 | #Return writable unsigned 16-bit pointer to first component of pixel ## |
| 1471 | |
| 1472 | #Example |
| 1473 | #Height 64 |
| 1474 | #Description |
| 1475 | Left bitmap is drawn with two pixels defined in half float format. Right bitmap |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1476 | is drawn after overwriting bottom half float color with top half float color. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1477 | ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1478 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1495 | ## |
| 1496 | |
| 1497 | #SeeAlso writable_addr writable_addr8 writable_addr16 writable_addr32 writable_addr64 addr() addrF16 |
| 1498 | |
| 1499 | ## |
| 1500 | |
| 1501 | #Subtopic Writable_Address ## |
| 1502 | |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 1503 | #Subtopic Pixels |
| 1504 | #Populate |
| 1505 | #Line # read and write pixel values ## |
| 1506 | ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1507 | |
| 1508 | # ------------------------------------------------------------------------------ |
| 1509 | |
Cary Clark | e80cd44 | 2018-07-17 13:19:56 -0400 | [diff] [blame] | 1510 | #Method bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes) const |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 1511 | #In Pixels |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1512 | #Line # copies and converts pixels ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1513 | |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1514 | Copies a Rect of pixels to dstPixels. Copy starts at (0, 0), and does not |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1515 | exceed Pixmap (width(), height()). |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1516 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1517 | dstInfo specifies width, height, Color_Type, Alpha_Type, and |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1518 | Color_Space of destination. dstRowBytes specifics the gap from one destination |
| 1519 | row to the next. Returns true if pixels are copied. Returns false if |
| 1520 | dstInfo.addr() equals nullptr, or dstRowBytes is less than dstInfo.minRowBytes. |
| 1521 | |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1522 | Pixels are copied only if pixel conversion is possible. If Pixmap colorType is |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1523 | kGray_8_SkColorType, or kAlpha_8_SkColorType; dstInfo.colorType must match. |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1524 | If Pixmap colorType is kGray_8_SkColorType, dstInfo.colorSpace must match. |
| 1525 | If Pixmap alphaType is kOpaque_SkAlphaType, dstInfo.alphaType must |
| 1526 | match. If Pixmap colorSpace is nullptr, dstInfo.colorSpace must match. Returns |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1527 | false if pixel conversion is not possible. |
| 1528 | |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1529 | Returns false if Pixmap width() or height() is zero or negative. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1530 | |
| 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 |
| 1540 | Transferring the gradient from 8 bits per component to 4 bits per component |
| 1541 | creates visible banding. |
| 1542 | ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1543 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1565 | 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 Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1575 | int srcY) const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1576 | |
| 1577 | Copies a Rect of pixels to dstPixels. Copy starts at (srcX, srcY), and does not |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1578 | exceed Pixmap (width(), height()). |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1579 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1580 | dstInfo specifies width, height, Color_Type, Alpha_Type, and |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1581 | Color_Space of destination. dstRowBytes specifics the gap from one destination |
| 1582 | row to the next. Returns true if pixels are copied. Returns false if |
| 1583 | dstInfo.addr() equals nullptr, or dstRowBytes is less than dstInfo.minRowBytes. |
| 1584 | |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1585 | Pixels are copied only if pixel conversion is possible. If Pixmap colorType is |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1586 | kGray_8_SkColorType, or kAlpha_8_SkColorType; dstInfo.colorType must match. |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1587 | If Pixmap colorType is kGray_8_SkColorType, dstInfo.colorSpace must match. |
| 1588 | If Pixmap alphaType is kOpaque_SkAlphaType, dstInfo.alphaType must |
| 1589 | match. If Pixmap colorSpace is nullptr, dstInfo.colorSpace must match. Returns |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1590 | false if pixel conversion is not possible. |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1591 | |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1592 | srcX and srcY may be negative to copy only top or left of source. Returns |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1593 | false if Pixmap width() or height() is zero or negative. Returns false if: |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1594 | |
Cary Clark | 2be81cf | 2018-09-13 12:04:30 -0400 | [diff] [blame] | 1595 | #Formula # abs(srcX) >= Pixmap width() ##, or if #Formula # abs(srcY) >= Pixmap height() ##. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1596 | |
| 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 Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1607 | void 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1624 | } |
| 1625 | ## |
| 1626 | |
| 1627 | #SeeAlso erase SkBitmap::readPixels SkCanvas::drawBitmap SkCanvas::readPixels SkImage::readPixels SkSurface::readPixels |
| 1628 | |
| 1629 | ## |
| 1630 | |
| 1631 | # ------------------------------------------------------------------------------ |
| 1632 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1633 | #Method bool readPixels(const SkPixmap& dst, int srcX, int srcY) const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1634 | |
| 1635 | Copies a Rect of pixels to dst. Copy starts at (srcX, srcY), and does not |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1636 | exceed Pixmap (width(), height()). dst specifies width, height, Color_Type, |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1637 | Alpha_Type, and Color_Space of destination. Returns true if pixels are copied. |
| 1638 | Returns false if dst.addr() equals nullptr, or dst.rowBytes is less than |
| 1639 | dst SkImageInfo::minRowBytes. |
| 1640 | |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1641 | Pixels are copied only if pixel conversion is possible. If Pixmap colorType is |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1642 | kGray_8_SkColorType, or kAlpha_8_SkColorType; dst.info().colorType must match. |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1643 | If Pixmap colorType is kGray_8_SkColorType, dst.info().colorSpace must match. |
| 1644 | If Pixmap alphaType is kOpaque_SkAlphaType, dst.info().alphaType must |
| 1645 | match. If Pixmap colorSpace is nullptr, dst.info().colorSpace must match. Returns |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1646 | false if pixel conversion is not possible. |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1647 | |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1648 | srcX and srcY may be negative to copy only top or left of source. Returns |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1649 | false Pixmap width() or height() is zero or negative. Returns false if: |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1650 | |
Cary Clark | 2be81cf | 2018-09-13 12:04:30 -0400 | [diff] [blame] | 1651 | #Formula # abs(srcX) >= Pixmap width() ##, or if #Formula # abs(srcY) >= Pixmap height() ##. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1652 | |
| 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 Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1661 | void 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1678 | } |
| 1679 | ## |
| 1680 | |
| 1681 | #SeeAlso erase SkBitmap::readPixels SkCanvas::drawBitmap SkCanvas::readPixels SkImage::readPixels SkSurface::readPixels |
| 1682 | |
| 1683 | ## |
| 1684 | |
| 1685 | # ------------------------------------------------------------------------------ |
| 1686 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1687 | #Method bool readPixels(const SkPixmap& dst) const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1688 | |
| 1689 | Copies pixels inside bounds() to dst. dst specifies width, height, Color_Type, |
| 1690 | Alpha_Type, and Color_Space of destination. Returns true if pixels are copied. |
| 1691 | Returns false if dst.addr() equals nullptr, or dst.rowBytes is less than |
| 1692 | dst SkImageInfo::minRowBytes. |
| 1693 | |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1694 | Pixels are copied only if pixel conversion is possible. If Pixmap colorType is |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1695 | kGray_8_SkColorType, or kAlpha_8_SkColorType; dst Color_Type must match. |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1696 | If Pixmap colorType is kGray_8_SkColorType, dst Color_Space must match. |
| 1697 | If Pixmap alphaType is kOpaque_SkAlphaType, dst Alpha_Type must |
| 1698 | match. If Pixmap colorSpace is nullptr, dst Color_Space must match. Returns |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1699 | false if pixel conversion is not possible. |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1700 | |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1701 | Returns false if Pixmap width() or height() is zero or negative. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1702 | |
| 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 Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1709 | void 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1726 | } |
| 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 Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 1737 | #In Pixels |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1738 | #Line # scales and converts pixels ## |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1739 | Copies Bitmap to dst, scaling pixels to fit dst.width() and dst.height(), and |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1740 | converting pixels to match dst.colorType and dst.alphaType. Returns true if |
| 1741 | pixels are copied. Returns false if dst.addr() is nullptr, or dst.rowBytes is |
| 1742 | less than dst SkImageInfo::minRowBytes. |
| 1743 | |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1744 | Pixels are copied only if pixel conversion is possible. If Pixmap colorType is |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1745 | kGray_8_SkColorType, or kAlpha_8_SkColorType; dst Color_Type must match. |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1746 | If Pixmap colorType is kGray_8_SkColorType, dst Color_Space must match. |
| 1747 | If Pixmap alphaType is kOpaque_SkAlphaType, dst Alpha_Type must |
| 1748 | match. If Pixmap colorSpace is nullptr, dst Color_Space must match. Returns |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1749 | false if pixel conversion is not possible. |
| 1750 | |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1751 | Returns false if Bitmap width() or height() is zero or negative. |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1752 | |
| 1753 | Scales the image, with filterQuality, to match dst.width() and dst.height(). |
| 1754 | filterQuality kNone_SkFilterQuality is fastest, typically implemented with |
| 1755 | Filter_Quality_Nearest_Neighbor. kLow_SkFilterQuality is typically implemented with |
| 1756 | Filter_Quality_Bilerp. kMedium_SkFilterQuality is typically implemented with |
| 1757 | Filter_Quality_Bilerp, and Filter_Quality_MipMap when size is reduced. |
| 1758 | kHigh_SkFilterQuality is slowest, typically implemented with Filter_Quality_BiCubic. |
| 1759 | |
| 1760 | #Param dst Image_Info and pixel address to write to ## |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1761 | #Param filterQuality one of: kNone_SkFilterQuality, kLow_SkFilterQuality, |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1762 | kMedium_SkFilterQuality, kHigh_SkFilterQuality |
| 1763 | ## |
| 1764 | |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1765 | #Return true if pixels are scaled to fit dst ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1766 | |
| 1767 | #Example |
| 1768 | #Image 3 |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1769 | void 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1788 | } |
| 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 Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 1799 | #In Pixels |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1800 | #Line # writes Color to pixels ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1801 | Writes color to pixels bounded by subset; returns true on success. |
| 1802 | Returns false if colorType is kUnknown_SkColorType, or if subset does |
| 1803 | not intersect bounds(). |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1804 | |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1805 | #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 Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1811 | #Height 50 |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1812 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1821 | ## |
| 1822 | |
| 1823 | #SeeAlso SkBitmap::erase SkCanvas::clear SkCanvas::drawColor |
| 1824 | |
| 1825 | ## |
| 1826 | |
| 1827 | # ------------------------------------------------------------------------------ |
| 1828 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1829 | #Method bool erase(SkColor color) const |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1830 | |
| 1831 | Writes color to pixels inside bounds(); returns true on success. |
| 1832 | Returns false if colorType is kUnknown_SkColorType, or if bounds() |
| 1833 | is empty. |
| 1834 | |
| 1835 | #Param color Unpremultiplied Color to write ## |
| 1836 | |
| 1837 | #Return true if pixels are changed ## |
| 1838 | |
| 1839 | #Example |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1840 | #Height 50 |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1841 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1849 | ## |
| 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 | |
| 1859 | Writes color to pixels bounded by subset; returns true on success. |
| 1860 | if subset is nullptr, writes colors pixels inside bounds(). Returns false if |
| 1861 | colorType is kUnknown_SkColorType, if subset is not nullptr and does |
| 1862 | not 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 Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1870 | #Height 50 |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1871 | 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 Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1882 | ## |
| 1883 | |
| 1884 | #SeeAlso SkBitmap::erase SkCanvas::clear SkCanvas::drawColor |
| 1885 | |
| 1886 | ## |
| 1887 | |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1888 | #Class SkPixmap ## |
| 1889 | |
| 1890 | #Topic Pixmap ## |