Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1 | #Topic Canvas |
Cary Clark | 12799e1 | 2017-07-28 15:18:29 -0400 | [diff] [blame] | 2 | #Alias Canvas_Reference |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3 | |
Cary Clark | e4aa371 | 2017-09-15 02:56:12 -0400 | [diff] [blame] | 4 | #Class SkCanvas |
| 5 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6 | Canvas provides an interface for drawing, and how the drawing is clipped and transformed. |
| 7 | Canvas contains a stack of Matrix and Clip values. |
| 8 | |
| 9 | Canvas and Paint together provide the state to draw into Surface or Device. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 10 | Each Canvas draw call transforms the geometry of the object by the concatenation of all |
| 11 | Matrix values in the stack. The transformed geometry is clipped by the intersection |
| 12 | of all of Clip values in the stack. The Canvas draw calls use Paint to supply drawing |
| 13 | state such as Color, Typeface, text size, stroke width, Shader and so on. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 14 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 15 | To draw to a pixel-based destination, create Raster_Surface or GPU_Surface. |
| 16 | Request Canvas from Surface to obtain the interface to draw. |
| 17 | Canvas generated by Raster_Surface draws to memory visible to the CPU. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 18 | Canvas generated by GPU_Surface uses Vulkan or OpenGL to draw to the GPU. |
| 19 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 20 | To draw to a document, obtain Canvas from SVG_Canvas, Document_PDF, or Picture_Recorder. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 21 | Document based Canvas and other Canvas Subclasses reference Device describing the |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 22 | destination. |
| 23 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 24 | Canvas can be constructed to draw to Bitmap without first creating Raster_Surface. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 25 | This approach may be deprecated in the future. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 26 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 27 | #Subtopic Overview |
| 28 | #Populate |
| 29 | ## |
| 30 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 31 | #Subtopic Related_Function |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 32 | #Populate |
| 33 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 34 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 35 | #Subtopic Constant |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 36 | #Populate |
| 37 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 38 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 39 | #Subtopic Struct |
| 40 | #Populate |
| 41 | ## |
| 42 | |
| 43 | #Subtopic Typedef |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 44 | #Populate |
| 45 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 46 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 47 | #Subtopic Constructor |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 48 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 49 | Create the desired type of Surface to obtain its Canvas when possible. Useful |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 50 | when no Surface is required, and some helpers implicitly create Raster_Surface. |
| 51 | |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 52 | #Populate |
| 53 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 54 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 55 | #Subtopic Member_Function |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 56 | #Populate |
| 57 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 58 | |
| 59 | # ------------------------------------------------------------------------------ |
| 60 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 61 | #Method static std::unique_ptr<SkCanvas> MakeRasterDirect(const SkImageInfo& info, void* pixels, |
| 62 | size_t rowBytes, |
| 63 | const SkSurfaceProps* props = nullptr) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 64 | #In Constructor |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 65 | #Line # creates from SkImageInfo and Pixel_Storage ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 66 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 67 | Allocates raster Canvas that will draw directly into pixels. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 68 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 69 | Canvas is returned if all parameters are valid. |
| 70 | Valid parameters include: |
| 71 | info dimensions are zero or positive; |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 72 | info contains Color_Type and Alpha_Type supported by Raster_Surface; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 73 | pixels is not nullptr; |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 74 | rowBytes is zero or large enough to contain info width pixels of Color_Type. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 75 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 76 | Pass zero for rowBytes to compute rowBytes from info width and size of pixel. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 77 | If rowBytes is greater than zero, it must be equal to or greater than |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 78 | info width times bytes required for Color_Type. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 79 | |
| 80 | Pixel buffer size should be info height times computed rowBytes. |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 81 | Pixels are not initialized. |
| 82 | To access pixels after drawing, call flush() or peekPixels. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 83 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 84 | #Param info width, height, Color_Type, Alpha_Type, Color_Space, of Raster_Surface; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 85 | width, or height, or both, may be zero |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 86 | ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 87 | #Param pixels pointer to destination pixels buffer |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 88 | ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 89 | #Param rowBytes interval from one Surface row to the next, or zero |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 90 | ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 91 | #Param props LCD striping orientation and setting for device independent fonts; |
| 92 | may be nullptr |
| 93 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 94 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 95 | #Return Canvas if all parameters are valid; otherwise, nullptr ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 96 | |
| 97 | #Example |
| 98 | #Description |
| 99 | Allocates a three by three bitmap, clears it to white, and draws a black pixel |
| 100 | in the center. |
| 101 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 102 | void draw(SkCanvas* ) { |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 103 | SkImageInfo info = SkImageInfo::MakeN32Premul(3, 3); // device aligned, 32 bpp, Premultiplied |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 104 | const size_t minRowBytes = info.minRowBytes(); // bytes used by one bitmap row |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 105 | const size_t size = info.computeMinByteSize(); // bytes used by all rows |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 106 | SkAutoTMalloc<SkPMColor> storage(size); // allocate storage for pixels |
| 107 | SkPMColor* pixels = storage.get(); // get pointer to allocated storage |
| 108 | // create a SkCanvas backed by a raster device, and delete it when the |
| 109 | // function goes out of scope. |
| 110 | std::unique_ptr<SkCanvas> canvas = SkCanvas::MakeRasterDirect(info, pixels, minRowBytes); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 111 | canvas->clear(SK_ColorWHITE); // white is Unpremultiplied, in ARGB order |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 112 | canvas->flush(); // ensure that pixels are cleared |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 113 | SkPMColor pmWhite = pixels[0]; // the Premultiplied format may vary |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 114 | SkPaint paint; // by default, draws black |
| 115 | canvas->drawPoint(1, 1, paint); // draw in the center |
| 116 | canvas->flush(); // ensure that point was drawn |
| 117 | for (int y = 0; y < info.height(); ++y) { |
| 118 | for (int x = 0; x < info.width(); ++x) { |
| 119 | SkDebugf("%c", *pixels++ == pmWhite ? '-' : 'x'); |
| 120 | } |
| 121 | SkDebugf("\n"); |
| 122 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 123 | } |
| 124 | #StdOut |
| 125 | --- |
| 126 | -x- |
| 127 | --- |
| 128 | ## |
| 129 | ## |
| 130 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 131 | #SeeAlso MakeRasterDirectN32 SkSurface::MakeRasterDirect |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 132 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 133 | ## |
| 134 | |
| 135 | # ------------------------------------------------------------------------------ |
| 136 | |
| 137 | #Method static std::unique_ptr<SkCanvas> MakeRasterDirectN32(int width, int height, SkPMColor* pixels, |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 138 | size_t rowBytes) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 139 | #In Constructor |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 140 | #Line # creates from image data and Pixel_Storage ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 141 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 142 | Allocates raster Canvas specified by inline image specification. Subsequent Canvas |
| 143 | calls draw into pixels. |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 144 | Color_Type is set to kN32_SkColorType. |
| 145 | Alpha_Type is set to kPremul_SkAlphaType. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 146 | To access pixels after drawing, call flush() or peekPixels. |
| 147 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 148 | Canvas is returned if all parameters are valid. |
| 149 | Valid parameters include: |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 150 | width and height are zero or positive; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 151 | pixels is not nullptr; |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 152 | rowBytes is zero or large enough to contain width pixels of kN32_SkColorType. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 153 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 154 | Pass zero for rowBytes to compute rowBytes from width and size of pixel. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 155 | If rowBytes is greater than zero, it must be equal to or greater than |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 156 | width times bytes required for Color_Type. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 157 | |
| 158 | Pixel buffer size should be height times rowBytes. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 159 | |
| 160 | #Param width pixel column count on Raster_Surface created; must be zero or greater ## |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 161 | #Param height pixel row count on Raster_Surface created; must be zero or greater ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 162 | #Param pixels pointer to destination pixels buffer; buffer size should be height |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 163 | times rowBytes |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 164 | ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 165 | #Param rowBytes interval from one Surface row to the next, or zero |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 166 | ## |
| 167 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 168 | #Return Canvas if all parameters are valid; otherwise, nullptr ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 169 | |
| 170 | #Example |
| 171 | #Description |
| 172 | Allocates a three by three bitmap, clears it to white, and draws a black pixel |
| 173 | in the center. |
| 174 | ## |
| 175 | void draw(SkCanvas* ) { |
| 176 | const int width = 3; |
| 177 | const int height = 3; |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 178 | SkPMColor pixels[height][width]; // allocate a 3x3 Premultiplied bitmap on the stack |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 179 | // create a SkCanvas backed by a raster device, and delete it when the |
| 180 | // function goes out of scope. |
| 181 | std::unique_ptr<SkCanvas> canvas = SkCanvas::MakeRasterDirectN32( |
| 182 | width, |
| 183 | height, |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 184 | pixels[0], // top-left of the bitmap |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 185 | sizeof(pixels[0])); // byte width of the each row |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 186 | // write a Premultiplied value for white into all pixels in the bitmap |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 187 | canvas->clear(SK_ColorWHITE); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 188 | SkPMColor pmWhite = pixels[0][0]; // the Premultiplied format may vary |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 189 | SkPaint paint; // by default, draws black |
| 190 | canvas->drawPoint(1, 1, paint); // draw in the center |
| 191 | canvas->flush(); // ensure that pixels is ready to be read |
| 192 | for (int y = 0; y < height; ++y) { |
| 193 | for (int x = 0; x < width; ++x) { |
| 194 | SkDebugf("%c", pixels[y][x] == pmWhite ? '-' : 'x'); |
| 195 | } |
| 196 | SkDebugf("\n"); |
| 197 | } |
| 198 | } |
| 199 | #StdOut |
| 200 | --- |
| 201 | -x- |
| 202 | --- |
| 203 | ## |
| 204 | ## |
| 205 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 206 | #SeeAlso MakeRasterDirect SkSurface::MakeRasterDirect SkImageInfo::MakeN32Premul |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 207 | |
| 208 | ## |
| 209 | |
| 210 | # ------------------------------------------------------------------------------ |
| 211 | |
| 212 | #Method SkCanvas() |
| 213 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 214 | #Line # creates with no Surface, no dimensions ## |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 215 | Creates an empty Canvas with no backing device or pixels, with |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 216 | a width and height of zero. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 217 | |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 218 | #Return empty Canvas ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 219 | |
| 220 | #Example |
| 221 | |
| 222 | #Description |
| 223 | Passes a placeholder to a function that requires one. |
| 224 | ## |
| 225 | |
| 226 | #Function |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 227 | // Returns true if either the canvas rotates the text by 90 degrees, or the paint does. |
| 228 | static void check_for_up_and_down_text(const SkCanvas* canvas, const SkPaint& paint) { |
| 229 | bool paintHasVertical = paint.isVerticalText(); |
| 230 | const SkMatrix& matrix = canvas->getTotalMatrix(); |
| 231 | bool matrixIsVertical = matrix.preservesRightAngles() && !matrix.isScaleTranslate(); |
| 232 | SkDebugf("paint draws text %s\n", paintHasVertical != matrixIsVertical ? |
| 233 | "top to bottom" : "left to right"); |
| 234 | } |
| 235 | |
| 236 | static void check_for_up_and_down_text(const SkPaint& paint) { |
| 237 | SkCanvas canvas; // placeholder only, does not have an associated device |
| 238 | check_for_up_and_down_text(&canvas, paint); |
| 239 | } |
| 240 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 241 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 242 | void draw(SkCanvas* canvas) { |
| 243 | SkPaint paint; |
| 244 | check_for_up_and_down_text(paint); // paint draws text left to right |
| 245 | paint.setVerticalText(true); |
| 246 | check_for_up_and_down_text(paint); // paint draws text top to bottom |
| 247 | paint.setVerticalText(false); |
| 248 | canvas->rotate(90); |
| 249 | check_for_up_and_down_text(canvas, paint); // paint draws text top to bottom |
| 250 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 251 | |
| 252 | #StdOut |
| 253 | paint draws text left to right |
| 254 | paint draws text top to bottom |
| 255 | paint draws text top to bottom |
| 256 | ## |
| 257 | ## |
| 258 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 259 | #SeeAlso MakeRasterDirect SkRasterHandleAllocator::MakeCanvas SkSurface::getCanvas SkCreateColorSpaceXformCanvas |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 260 | |
| 261 | ## |
| 262 | |
| 263 | # ------------------------------------------------------------------------------ |
| 264 | |
Cary Clark | 73fa972 | 2017-08-29 17:36:51 -0400 | [diff] [blame] | 265 | #Method SkCanvas(int width, int height, const SkSurfaceProps* props = nullptr) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 266 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 267 | #Line # creates with no Surface, set dimensions, Surface_Properties ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 268 | Creates Canvas of the specified dimensions without a Surface. |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 269 | Used by Subclasses with custom implementations for draw member functions. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 270 | |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 271 | If props equals nullptr, Surface_Properties are created with |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 272 | Surface_Properties_Legacy_Font_Host settings, which choose the pixel striping |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 273 | direction and order. Since a platform may dynamically change its direction when |
| 274 | the device is rotated, and since a platform may have multiple monitors with |
| 275 | different characteristics, it is best not to rely on this legacy behavior. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 276 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 277 | #Param width zero or greater ## |
| 278 | #Param height zero or greater ## |
| 279 | #Param props LCD striping orientation and setting for device independent fonts; |
| 280 | may be nullptr |
| 281 | ## |
| 282 | |
| 283 | #Return Canvas placeholder with dimensions ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 284 | |
| 285 | #Example |
| 286 | SkCanvas canvas(10, 20); // 10 units wide, 20 units high |
| 287 | canvas.clipRect(SkRect::MakeXYWH(30, 40, 5, 10)); // clip is outside canvas' device |
| 288 | SkDebugf("canvas %s empty\n", canvas.getDeviceClipBounds().isEmpty() ? "is" : "is not"); |
| 289 | |
| 290 | #StdOut |
| 291 | canvas is empty |
| 292 | ## |
| 293 | ## |
| 294 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 295 | #SeeAlso MakeRasterDirect SkSurfaceProps SkPixelGeometry SkCreateColorSpaceXformCanvas |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 296 | |
| 297 | ## |
| 298 | |
| 299 | # ------------------------------------------------------------------------------ |
| 300 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 301 | #Method explicit SkCanvas(sk_sp<SkBaseDevice> device) |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 302 | #Deprecated soon |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 303 | ## |
| 304 | |
| 305 | # ------------------------------------------------------------------------------ |
| 306 | |
| 307 | #Method explicit SkCanvas(const SkBitmap& bitmap) |
| 308 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 309 | #Line # uses existing Bitmap ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 310 | Construct a canvas that draws into bitmap. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 311 | Sets SkSurfaceProps::kLegacyFontHost_InitType in constructed Surface. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 312 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 313 | Bitmap is copied so that subsequently editing bitmap will not affect |
| 314 | constructed Canvas. |
| 315 | |
| 316 | May be deprecated in the future. |
| 317 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 318 | #ToDo Should be deprecated? ## |
| 319 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 320 | #Param bitmap width, height, Color_Type, Alpha_Type, and pixel |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 321 | storage of Raster_Surface |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 322 | ## |
| 323 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 324 | #Return Canvas that can be used to draw into bitmap ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 325 | |
| 326 | #Example |
| 327 | #Description |
| 328 | The actual output depends on the installed fonts. |
| 329 | ## |
| 330 | SkBitmap bitmap; |
| 331 | // create a bitmap 5 wide and 11 high |
| 332 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(5, 11)); |
| 333 | SkCanvas canvas(bitmap); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 334 | canvas.clear(SK_ColorWHITE); // white is Unpremultiplied, in ARGB order |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 335 | SkPixmap pixmap; // provides guaranteed access to the drawn pixels |
| 336 | if (!canvas.peekPixels(&pixmap)) { |
| 337 | SkDebugf("peekPixels should never fail.\n"); |
| 338 | } |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 339 | const SkPMColor* pixels = pixmap.addr32(); // points to top-left of bitmap |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 340 | SkPMColor pmWhite = pixels[0]; // the Premultiplied format may vary |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 341 | SkPaint paint; // by default, draws black, 12 point text |
| 342 | canvas.drawString("!", 1, 10, paint); // 1 char at baseline (1, 10) |
| 343 | for (int y = 0; y < bitmap.height(); ++y) { |
| 344 | for (int x = 0; x < bitmap.width(); ++x) { |
| 345 | SkDebugf("%c", *pixels++ == pmWhite ? '-' : 'x'); |
| 346 | } |
| 347 | SkDebugf("\n"); |
| 348 | } |
| 349 | |
| 350 | #StdOut |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 351 | ----- |
| 352 | ---x- |
| 353 | ---x- |
| 354 | ---x- |
| 355 | ---x- |
| 356 | ---x- |
| 357 | ---x- |
| 358 | ----- |
| 359 | ---x- |
| 360 | ---x- |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 361 | ----- |
| 362 | #StdOut ## |
| 363 | ## |
| 364 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 365 | #SeeAlso MakeRasterDirect SkRasterHandleAllocator::MakeCanvas SkSurface::getCanvas SkCreateColorSpaceXformCanvas |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 366 | |
| 367 | ## |
| 368 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 369 | #EnumClass ColorBehavior |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 370 | #Line # exists for Android framework only ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 371 | #Private |
| 372 | Android framework only. |
| 373 | ## |
| 374 | |
| 375 | #Code |
| 376 | enum class ColorBehavior { |
| 377 | kLegacy, |
| 378 | }; |
| 379 | ## |
| 380 | #Const kLegacy 0 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 381 | #Line # placeholder ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 382 | Is a placeholder to allow specialized constructor; has no meaning. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 383 | ## |
| 384 | ## |
| 385 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 386 | #Method SkCanvas(const SkBitmap& bitmap, ColorBehavior behavior) |
| 387 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 388 | #Line # exists for Android framework only ## |
| 389 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 390 | Android framework only. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 391 | |
| 392 | #Param bitmap specifies a bitmap for the canvas to draw into ## |
| 393 | #Param behavior specializes this constructor; value is unused ## |
| 394 | #Return Canvas that can be used to draw into bitmap ## |
| 395 | |
| 396 | #NoExample |
| 397 | ## |
| 398 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 399 | |
| 400 | # ------------------------------------------------------------------------------ |
| 401 | |
| 402 | #Method SkCanvas(const SkBitmap& bitmap, const SkSurfaceProps& props) |
| 403 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 404 | #Line # uses existing Bitmap and Surface_Properties ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 405 | Construct a canvas that draws into bitmap. |
| 406 | Use props to match the device characteristics, like LCD striping. |
| 407 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 408 | bitmap is copied so that subsequently editing bitmap will not affect |
| 409 | constructed Canvas. |
| 410 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 411 | #Param bitmap width, height, Color_Type, Alpha_Type, |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 412 | and pixel storage of Raster_Surface |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 413 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 414 | #Param props order and orientation of RGB striping; and whether to use |
| 415 | device independent fonts |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 416 | ## |
| 417 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 418 | #Return Canvas that can be used to draw into bitmap ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 419 | |
| 420 | #Example |
| 421 | #Description |
| 422 | The actual output depends on the installed fonts. |
| 423 | ## |
| 424 | SkBitmap bitmap; |
| 425 | // create a bitmap 5 wide and 11 high |
| 426 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(5, 11)); |
| 427 | SkCanvas canvas(bitmap, SkSurfaceProps(0, kUnknown_SkPixelGeometry)); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 428 | canvas.clear(SK_ColorWHITE); // white is Unpremultiplied, in ARGB order |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 429 | SkPixmap pixmap; // provides guaranteed access to the drawn pixels |
| 430 | if (!canvas.peekPixels(&pixmap)) { |
| 431 | SkDebugf("peekPixels should never fail.\n"); |
| 432 | } |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 433 | const SkPMColor* pixels = pixmap.addr32(); // points to top-left of bitmap |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 434 | SkPMColor pmWhite = pixels[0]; // the Premultiplied format may vary |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 435 | SkPaint paint; // by default, draws black, 12 point text |
| 436 | canvas.drawString("!", 1, 10, paint); // 1 char at baseline (1, 10) |
| 437 | for (int y = 0; y < bitmap.height(); ++y) { |
| 438 | for (int x = 0; x < bitmap.width(); ++x) { |
| 439 | SkDebugf("%c", *pixels++ == pmWhite ? '-' : 'x'); |
| 440 | } |
| 441 | SkDebugf("\n"); |
| 442 | } |
| 443 | |
| 444 | #StdOut |
| 445 | ----- |
| 446 | ---x- |
| 447 | ---x- |
| 448 | ---x- |
| 449 | ---x- |
| 450 | ---x- |
| 451 | ---x- |
| 452 | ----- |
| 453 | ---x- |
| 454 | ---x- |
| 455 | ----- |
| 456 | #StdOut ## |
| 457 | ## |
| 458 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 459 | #SeeAlso MakeRasterDirect SkRasterHandleAllocator::MakeCanvas SkSurface::getCanvas SkCreateColorSpaceXformCanvas |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 460 | |
| 461 | ## |
| 462 | |
| 463 | # ------------------------------------------------------------------------------ |
| 464 | |
| 465 | #Method virtual ~SkCanvas() |
| 466 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 467 | #Line # draws saved Layers, frees resources ## |
Cary Clark | 5081eed | 2018-01-22 07:55:48 -0500 | [diff] [blame] | 468 | Draws saved Layers, if any. |
| 469 | Frees up resources used by Canvas. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 470 | |
| 471 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 472 | #Description |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 473 | Canvas Layer draws into bitmap. saveLayerAlpha sets up an additional |
| 474 | drawing surface that blends with the bitmap. When Layer goes out of |
| 475 | scope, Layer Destructor is called. The saved Layer is restored, drawing |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 476 | transparent letters. |
| 477 | ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 478 | void draw(SkCanvas* canvas) { |
| 479 | SkBitmap bitmap; |
| 480 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(200, 200)); |
| 481 | { |
| 482 | SkCanvas offscreen(bitmap); |
| 483 | SkPaint paint; |
| 484 | paint.setTextSize(100); |
| 485 | offscreen.drawString("ABC", 20, 160, paint); |
| 486 | SkRect layerBounds = SkRect::MakeXYWH(32, 32, 192, 192); |
| 487 | offscreen.saveLayerAlpha(&layerBounds, 128); |
| 488 | offscreen.clear(SK_ColorWHITE); |
| 489 | offscreen.drawString("DEF", 20, 160, paint); |
| 490 | } |
| 491 | canvas->drawBitmap(bitmap, 0, 0, nullptr); |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 492 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 493 | ## |
| 494 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 495 | #SeeAlso State_Stack |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 496 | |
| 497 | ## |
| 498 | |
| 499 | # ------------------------------------------------------------------------------ |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 500 | #Subtopic Property |
| 501 | #Populate |
| 502 | #Line # metrics and attributes ## |
| 503 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 504 | |
| 505 | #Method SkMetaData& getMetaData() |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 506 | #In Property |
| 507 | #In Utility |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 508 | #Line # associates additional data with the canvas ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 509 | Returns storage to associate additional data with the canvas. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 510 | The storage is freed when Canvas is deleted. |
| 511 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 512 | #Return storage that can be read from and written to ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 513 | |
| 514 | #Example |
| 515 | const char* kHelloMetaData = "HelloMetaData"; |
| 516 | SkCanvas canvas; |
| 517 | SkMetaData& metaData = canvas.getMetaData(); |
| 518 | SkDebugf("before: %s\n", metaData.findString(kHelloMetaData)); |
| 519 | metaData.setString(kHelloMetaData, "Hello!"); |
| 520 | SkDebugf("during: %s\n", metaData.findString(kHelloMetaData)); |
| 521 | metaData.removeString(kHelloMetaData); |
| 522 | SkDebugf("after: %s\n", metaData.findString(kHelloMetaData)); |
| 523 | |
| 524 | #StdOut |
| 525 | before: (null) |
| 526 | during: Hello! |
| 527 | after: (null) |
| 528 | #StdOut ## |
| 529 | ## |
| 530 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 531 | #SeeAlso SkMetaData |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 532 | |
| 533 | ## |
| 534 | |
| 535 | # ------------------------------------------------------------------------------ |
| 536 | |
| 537 | #Method SkImageInfo imageInfo() const |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 538 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 539 | #Line # returns Image_Info for Canvas ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 540 | Returns Image_Info for Canvas. If Canvas is not associated with Raster_Surface or |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 541 | GPU_Surface, returned Color_Type is set to kUnknown_SkColorType. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 542 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 543 | #Return dimensions and Color_Type of Canvas ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 544 | |
| 545 | #Example |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 546 | SkCanvas emptyCanvas; |
| 547 | SkImageInfo canvasInfo = emptyCanvas.imageInfo(); |
| 548 | SkImageInfo emptyInfo; |
| 549 | SkDebugf("emptyInfo %c= canvasInfo\n", emptyInfo == canvasInfo ? '=' : '!'); |
| 550 | |
| 551 | #StdOut |
| 552 | emptyInfo == canvasInfo |
| 553 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 554 | ## |
| 555 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 556 | #SeeAlso SkImageInfo MakeRasterDirect makeSurface |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 557 | |
| 558 | ## |
| 559 | |
| 560 | # ------------------------------------------------------------------------------ |
| 561 | |
| 562 | #Method bool getProps(SkSurfaceProps* props) const |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 563 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 564 | #Line # copies Surface_Properties if available ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 565 | If Canvas is associated with Raster_Surface or |
| 566 | GPU_Surface, copies Surface_Properties and returns true. Otherwise, |
| 567 | return false and leave props unchanged. |
| 568 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 569 | #Param props storage for writable SkSurfaceProps ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 570 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 571 | #Return true if Surface_Properties was copied ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 572 | |
| 573 | #ToDo This seems old style. Deprecate? ## |
| 574 | |
| 575 | #Example |
| 576 | SkBitmap bitmap; |
| 577 | SkCanvas canvas(bitmap, SkSurfaceProps(0, kRGB_V_SkPixelGeometry)); |
| 578 | SkSurfaceProps surfaceProps(0, kUnknown_SkPixelGeometry); |
| 579 | SkDebugf("isRGB:%d\n", SkPixelGeometryIsRGB(surfaceProps.pixelGeometry())); |
| 580 | if (!canvas.getProps(&surfaceProps)) { |
| 581 | SkDebugf("getProps failed unexpectedly.\n"); |
| 582 | } |
| 583 | SkDebugf("isRGB:%d\n", SkPixelGeometryIsRGB(surfaceProps.pixelGeometry())); |
| 584 | |
| 585 | #StdOut |
| 586 | isRGB:0 |
| 587 | isRGB:1 |
| 588 | #StdOut ## |
| 589 | ## |
| 590 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 591 | #SeeAlso SkSurfaceProps makeSurface |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 592 | |
| 593 | ## |
| 594 | |
| 595 | # ------------------------------------------------------------------------------ |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 596 | #Subtopic Utility |
| 597 | #Populate |
| 598 | #Line # rarely called management functions ## |
| 599 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 600 | |
| 601 | #Method void flush() |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 602 | #In Utility |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 603 | #Line # triggers execution of all pending draw operations ## |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 604 | Triggers the immediate execution of all pending draw operations. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 605 | If Canvas is associated with GPU_Surface, resolves all pending GPU operations. |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 606 | If Canvas is associated with Raster_Surface, has no effect; raster draw |
| 607 | operations are never deferred. |
| 608 | |
| 609 | #ToDo |
| 610 | In an overview section on managing the GPU, include: |
| 611 | - flush should never change what is drawn |
| 612 | - call to kick off gpu work |
| 613 | - calling too much impacts performance |
| 614 | - some calls (peekPixels, prepareForExternalIO) call it internally |
| 615 | - canvas call is local, GrContext::flush is global |
| 616 | - diffentiate between flush, flushAndSignalSemaphores |
| 617 | - normally never needs to be called |
| 618 | - call it when sharing gpu resources, feeling memory pressure, swapping out app, and before |
| 619 | abandoning context |
| 620 | - also call to say "I'm finished drawing here", e.g., when drawing to a GPU-backed offscreen surface |
| 621 | (created with SkSurface::MakeRenderTarget) |
| 622 | |
| 623 | for posterity: this doesn't show a difference: fiddle.skia.org/c/@flushfail |
| 624 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 625 | |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 626 | #ToDo haven't thought of a useful example to put here ## |
| 627 | #NoExample |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 628 | ## |
| 629 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 630 | #SeeAlso peekPixels SkSurface::flush() GrContext::flush() SkSurface::prepareForExternalIO GrContext::abandonContext() |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 631 | |
| 632 | ## |
| 633 | |
| 634 | # ------------------------------------------------------------------------------ |
| 635 | |
| 636 | #Method virtual SkISize getBaseLayerSize() const |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 637 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 638 | #Line # returns size of base Layer in global coordinates ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 639 | Gets the size of the base or root Layer in global canvas coordinates. The |
| 640 | origin of the base Layer is always (0,0). The area available for drawing may be |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 641 | smaller (due to clipping or saveLayer). |
| 642 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 643 | #Return integral width and height of base Layer ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 644 | |
| 645 | #Example |
| 646 | SkBitmap bitmap; |
| 647 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(20, 30)); |
| 648 | SkCanvas canvas(bitmap, SkSurfaceProps(0, kUnknown_SkPixelGeometry)); |
| 649 | canvas.clipRect(SkRect::MakeWH(10, 40)); |
| 650 | SkIRect clipDeviceBounds = canvas.getDeviceClipBounds(); |
| 651 | if (clipDeviceBounds.isEmpty()) { |
| 652 | SkDebugf("Empty clip bounds is unexpected!\n"); |
| 653 | } |
| 654 | SkDebugf("clip=%d,%d\n", clipDeviceBounds.width(), clipDeviceBounds.height()); |
| 655 | SkISize baseLayerSize = canvas.getBaseLayerSize(); |
| 656 | SkDebugf("size=%d,%d\n", baseLayerSize.width(), baseLayerSize.height()); |
| 657 | |
| 658 | #StdOut |
| 659 | clip=10,30 |
| 660 | size=20,30 |
| 661 | ## |
| 662 | ## |
| 663 | |
| 664 | #ToDo is this the same as the width and height of surface? ## |
| 665 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 666 | #SeeAlso getDeviceClipBounds |
| 667 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 668 | ## |
| 669 | |
| 670 | # ------------------------------------------------------------------------------ |
| 671 | |
| 672 | #Method sk_sp<SkSurface> makeSurface(const SkImageInfo& info, const SkSurfaceProps* props = nullptr) |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 673 | #In Constructor |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 674 | #Line # creates Surface matching SkImageInfo and SkSurfaceProps ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 675 | Creates Surface matching info and props, and associates it with Canvas. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 676 | Returns nullptr if no match found. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 677 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 678 | If props is nullptr, matches Surface_Properties in Canvas. If props is nullptr and Canvas |
| 679 | does not have Surface_Properties, creates Surface with default Surface_Properties. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 680 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 681 | #Param info width, height, Color_Type, Alpha_Type, and Color_Space ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 682 | #Param props Surface_Properties to match; may be nullptr to match Canvas ## |
| 683 | |
| 684 | #Return Surface matching info and props, or nullptr if no match is available ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 685 | |
| 686 | #Example |
| 687 | sk_sp<SkSurface> surface = SkSurface::MakeRasterN32Premul(5, 6); |
| 688 | SkCanvas* smallCanvas = surface->getCanvas(); |
| 689 | SkImageInfo imageInfo = SkImageInfo::MakeN32Premul(3, 4); |
| 690 | sk_sp<SkSurface> compatible = smallCanvas->makeSurface(imageInfo); |
| 691 | SkDebugf("compatible %c= nullptr\n", compatible == nullptr ? '=' : '!'); |
| 692 | SkDebugf("size = %d, %d\n", compatible->width(), compatible->height()); |
| 693 | |
| 694 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 695 | compatible != nullptr |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 696 | size = 3, 4 |
| 697 | ## |
| 698 | ## |
| 699 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 700 | #SeeAlso SkSurface SkSurface::makeSurface SkImageInfo SkSurfaceProps |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 701 | |
| 702 | ## |
| 703 | |
| 704 | # ------------------------------------------------------------------------------ |
| 705 | |
| 706 | #Method virtual GrContext* getGrContext() |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 707 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 708 | #Line # returns GPU_Context of the GPU_Surface ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 709 | Returns GPU_Context of the GPU_Surface associated with Canvas. |
| 710 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 711 | #Return GPU_Context, if available; nullptr otherwise ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 712 | |
| 713 | #Example |
| 714 | void draw(SkCanvas* canvas) { |
| 715 | if (canvas->getGrContext()) { |
| 716 | canvas->clear(SK_ColorRED); |
| 717 | } else { |
| 718 | canvas->clear(SK_ColorBLUE); |
| 719 | } |
| 720 | } |
| 721 | ## |
| 722 | |
| 723 | #ToDo fiddle should show both CPU and GPU out ## |
| 724 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 725 | #SeeAlso GrContext |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 726 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 727 | ## |
| 728 | |
| 729 | # ------------------------------------------------------------------------------ |
| 730 | |
Cary Clark | 73fa972 | 2017-08-29 17:36:51 -0400 | [diff] [blame] | 731 | #Method void* accessTopLayerPixels(SkImageInfo* info, size_t* rowBytes, SkIPoint* origin = nullptr) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 732 | #In Utility |
| 733 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 734 | #Line # returns writable pixel access if available ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 735 | Returns the pixel base address, Image_Info, rowBytes, and origin if the pixels |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 736 | can be read directly. The returned address is only valid |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 737 | while Canvas is in scope and unchanged. Any Canvas call or Surface call |
| 738 | may invalidate the returned address and other returned values. |
| 739 | |
| 740 | If pixels are inaccessible, info, rowBytes, and origin are unchanged. |
| 741 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 742 | #Param info storage for writable pixels' Image_Info; may be nullptr ## |
| 743 | #Param rowBytes storage for writable pixels' row bytes; may be nullptr ## |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 744 | #Param origin storage for Canvas top Layer origin, its top-left corner; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 745 | may be nullptr |
| 746 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 747 | |
Cary Clark | a523d2d | 2017-08-30 08:58:10 -0400 | [diff] [blame] | 748 | #Return address of pixels, or nullptr if inaccessible ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 749 | |
| 750 | #Example |
| 751 | void draw(SkCanvas* canvas) { |
| 752 | if (canvas->accessTopLayerPixels(nullptr, nullptr)) { |
| 753 | canvas->clear(SK_ColorRED); |
| 754 | } else { |
| 755 | canvas->clear(SK_ColorBLUE); |
| 756 | } |
| 757 | } |
| 758 | ## |
| 759 | |
| 760 | #Example |
| 761 | #Description |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 762 | Draws "ABC" on the device. Then draws "DEF" in Layer, and reads |
| 763 | Layer to add a large dotted "DEF". Finally blends Layer with the |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 764 | device. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 765 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 766 | The Layer and blended result appear on the CPU and GPU but the large dotted |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 767 | "DEF" appear only on the CPU. |
| 768 | ## |
| 769 | void draw(SkCanvas* canvas) { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 770 | SkPaint paint; |
| 771 | paint.setTextSize(100); |
| 772 | canvas->drawString("ABC", 20, 160, paint); |
| 773 | SkRect layerBounds = SkRect::MakeXYWH(32, 32, 192, 192); |
| 774 | canvas->saveLayerAlpha(&layerBounds, 128); |
| 775 | canvas->clear(SK_ColorWHITE); |
| 776 | canvas->drawString("DEF", 20, 160, paint); |
| 777 | SkImageInfo imageInfo; |
| 778 | size_t rowBytes; |
| 779 | SkIPoint origin; |
| 780 | uint32_t* access = (uint32_t*) canvas->accessTopLayerPixels(&imageInfo, &rowBytes, &origin); |
| 781 | if (access) { |
| 782 | int h = imageInfo.height(); |
| 783 | int v = imageInfo.width(); |
| 784 | int rowWords = rowBytes / sizeof(uint32_t); |
| 785 | for (int y = 0; y < h; ++y) { |
| 786 | int newY = (y - h / 2) * 2 + h / 2; |
| 787 | if (newY < 0 || newY >= h) { |
| 788 | continue; |
| 789 | } |
| 790 | for (int x = 0; x < v; ++x) { |
| 791 | int newX = (x - v / 2) * 2 + v / 2; |
| 792 | if (newX < 0 || newX >= v) { |
| 793 | continue; |
| 794 | } |
| 795 | if (access[y * rowWords + x] == SK_ColorBLACK) { |
| 796 | access[newY * rowWords + newX] = SK_ColorGRAY; |
| 797 | } |
| 798 | } |
| 799 | } |
| 800 | |
| 801 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 802 | canvas->restore(); |
| 803 | } |
| 804 | ## |
| 805 | |
| 806 | #ToDo there are no callers of this that I can find. Deprecate? ## |
| 807 | #ToDo fiddle should show both CPU and GPU out ## |
| 808 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 809 | #SeeAlso SkImageInfo SkPixmap |
| 810 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 811 | ## |
| 812 | |
| 813 | # ------------------------------------------------------------------------------ |
| 814 | |
| 815 | #Method SkRasterHandleAllocator::Handle accessTopRasterHandle() const |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 816 | #In Utility |
| 817 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 818 | #Line # returns context that tracks Clip and Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 819 | Returns custom context that tracks the Matrix and Clip. |
| 820 | |
| 821 | Use Raster_Handle_Allocator to blend Skia drawing with custom drawing, typically performed |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 822 | by the host platform user interface. The custom context returned is generated by |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 823 | SkRasterHandleAllocator::MakeCanvas, which creates a custom canvas with raster storage for |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 824 | the drawing destination. |
| 825 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 826 | #Return context of custom allocation ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 827 | |
| 828 | #Example |
| 829 | #Description |
| 830 | #ToDo ## |
| 831 | ## |
| 832 | #Function |
| 833 | static void DeleteCallback(void*, void* context) { |
| 834 | delete (char*) context; |
| 835 | } |
| 836 | |
| 837 | class CustomAllocator : public SkRasterHandleAllocator { |
| 838 | public: |
| 839 | bool allocHandle(const SkImageInfo& info, Rec* rec) override { |
| 840 | char* context = new char[4]{'s', 'k', 'i', 'a'}; |
| 841 | rec->fReleaseProc = DeleteCallback; |
| 842 | rec->fReleaseCtx = context; |
| 843 | rec->fHandle = context; |
| 844 | rec->fPixels = context; |
| 845 | rec->fRowBytes = 4; |
| 846 | return true; |
| 847 | } |
| 848 | |
| 849 | void updateHandle(Handle handle, const SkMatrix& ctm, const SkIRect& clip_bounds) override { |
| 850 | // apply canvas matrix and clip to custom environment |
| 851 | } |
| 852 | }; |
| 853 | |
| 854 | ## |
| 855 | void draw(SkCanvas* canvas) { |
| 856 | const SkImageInfo info = SkImageInfo::MakeN32Premul(1, 1); |
| 857 | std::unique_ptr<SkCanvas> c2 = |
| 858 | SkRasterHandleAllocator::MakeCanvas(std::unique_ptr<CustomAllocator>( |
| 859 | new CustomAllocator()), info); |
| 860 | char* context = (char*) c2->accessTopRasterHandle(); |
| 861 | SkDebugf("context = %.4s\n", context); |
| 862 | |
| 863 | } |
| 864 | #StdOut |
| 865 | context = skia |
| 866 | ## |
| 867 | #ToDo skstd::make_unique could not be used because def is private -- note to fix in c++14? ## |
| 868 | ## |
| 869 | |
| 870 | #SeeAlso SkRasterHandleAllocator |
| 871 | |
| 872 | ## |
| 873 | |
| 874 | # ------------------------------------------------------------------------------ |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 875 | #Subtopic Pixels |
| 876 | #Populate |
| 877 | #Line # read and write pixel values ## |
| 878 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 879 | |
| 880 | #Method bool peekPixels(SkPixmap* pixmap) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 881 | #In Pixels |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 882 | #Line # returns if Canvas has direct access to its pixels ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 883 | Returns true if Canvas has direct access to its pixels. |
| 884 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 885 | Pixels are readable when Device is raster. Pixels are not readable when Canvas |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 886 | is returned from GPU_Surface, returned by SkDocument::beginPage, returned by |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 887 | SkPictureRecorder::beginRecording, or Canvas is the base of a utility class |
Brian Osman | 46fe9c7 | 2018-03-09 15:44:34 -0500 | [diff] [blame] | 888 | like SkDebugCanvas. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 889 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 890 | pixmap is valid only while Canvas is in scope and unchanged. Any |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 891 | Canvas or Surface call may invalidate the pixmap values. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 892 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 893 | #Param pixmap storage for pixel state if pixels are readable; otherwise, ignored ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 894 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 895 | #Return true if Canvas has direct access to pixels ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 896 | |
| 897 | #Example |
| 898 | SkPixmap pixmap; |
| 899 | if (canvas->peekPixels(&pixmap)) { |
| 900 | SkDebugf("width=%d height=%d\n", pixmap.bounds().width(), pixmap.bounds().height()); |
| 901 | } |
| 902 | #StdOut |
| 903 | width=256 height=256 |
| 904 | ## |
| 905 | ## |
| 906 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 907 | #SeeAlso readPixels SkBitmap::peekPixels SkImage::peekPixels SkSurface::peekPixels |
| 908 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 909 | ## |
| 910 | |
| 911 | # ------------------------------------------------------------------------------ |
| 912 | |
| 913 | #Method bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, |
| 914 | int srcX, int srcY) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 915 | #In Pixels |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 916 | #Line # copies and converts rectangle of pixels from Canvas ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 917 | |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 918 | Copies Rect of pixels from Canvas into dstPixels. Matrix and Clip are |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 919 | ignored. |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 920 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 921 | Source Rect corners are (srcX, srcY) and (imageInfo().width(), imageInfo().height()). |
| 922 | Destination Rect corners are (0, 0) and (dstInfo.width(), dstInfo.height()). |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 923 | Copies each readable pixel intersecting both rectangles, without scaling, |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 924 | converting to dstInfo.colorType() and dstInfo.alphaType() if required. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 925 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 926 | Pixels are readable when Device is raster, or backed by a GPU. |
| 927 | Pixels are not readable when SkCanvas is returned by SkDocument::beginPage, |
| 928 | returned by SkPictureRecorder::beginRecording, or Canvas is the base of a utility |
Brian Osman | 46fe9c7 | 2018-03-09 15:44:34 -0500 | [diff] [blame] | 929 | class like SkDebugCanvas. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 930 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 931 | The destination pixel storage must be allocated by the caller. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 932 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 933 | Pixel values are converted only if Color_Type and Alpha_Type |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 934 | do not match. Only pixels within both source and destination rectangles |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 935 | are copied. dstPixels contents outside Rect intersection are unchanged. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 936 | |
| 937 | Pass negative values for srcX or srcY to offset pixels across or down destination. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 938 | |
| 939 | Does not copy, and returns false if: |
| 940 | |
| 941 | #List |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 942 | # Source and destination rectangles do not intersect. ## |
| 943 | # Canvas pixels could not be converted to dstInfo.colorType() or dstInfo.alphaType(). ## |
| 944 | # Canvas pixels are not readable; for instance, Canvas is document-based. ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 945 | # dstRowBytes is too small to contain one row of pixels. ## |
| 946 | ## |
| 947 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 948 | #Param dstInfo width, height, Color_Type, and Alpha_Type of dstPixels ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 949 | #Param dstPixels storage for pixels; dstInfo.height() times dstRowBytes, or larger ## |
| 950 | #Param dstRowBytes size of one destination row; dstInfo.width() times pixel size, or larger ## |
| 951 | #Param srcX offset into readable pixels in x; may be negative ## |
| 952 | #Param srcY offset into readable pixels in y; may be negative ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 953 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 954 | #Return true if pixels were copied ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 955 | |
| 956 | #Example |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 957 | #Width 64 |
| 958 | #Height 64 |
| 959 | #Description |
| 960 | A black circle drawn on a blue background provides an image to copy. |
| 961 | readPixels copies one quarter of the canvas into each of the four corners. |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 962 | The copied quarter circles overdraw the original circle. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 963 | ## |
| 964 | canvas->clear(SK_ColorBLUE); |
| 965 | SkPaint paint; |
| 966 | canvas->drawCircle(32, 32, 28, paint); |
| 967 | SkImageInfo info = SkImageInfo::Make(64, 64, kBGRA_8888_SkColorType, kPremul_SkAlphaType); |
| 968 | sk_sp<SkData> data(SkData::MakeUninitialized(info.minRowBytes() * info.height())); |
| 969 | sk_bzero(data->writable_data(), info.minRowBytes() * info.height()); |
| 970 | for (int x : { 32, -32 } ) { |
| 971 | for (int y : { 32, -32 } ) { |
| 972 | canvas->readPixels(info, data->writable_data(), info.minRowBytes(), x, y); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 973 | } |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 974 | } |
| 975 | sk_sp<SkImage> image = SkImage::MakeRasterData(info, data, info.minRowBytes()); |
| 976 | canvas->drawImage(image, 0, 0); |
| 977 | ## |
| 978 | |
| 979 | #Example |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 980 | #Description |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 981 | Canvas returned by Raster_Surface has Premultiplied pixel values. |
| 982 | clear() takes Unpremultiplied input with Color_Alpha equal 0x80 |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 983 | and RGB equal 0x55, 0xAA, 0xFF. RGB is multiplied by Color_Alpha |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 984 | to generate Premultiplied value 0x802B5580. readPixels converts pixel back |
| 985 | to Unpremultiplied value 0x8056A9FF, introducing error. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 986 | ## |
| 987 | canvas->clear(0x8055aaff); |
| 988 | for (SkAlphaType alphaType : { kPremul_SkAlphaType, kUnpremul_SkAlphaType } ) { |
| 989 | uint32_t pixel = 0; |
| 990 | SkImageInfo info = SkImageInfo::Make(1, 1, kBGRA_8888_SkColorType, alphaType); |
| 991 | if (canvas->readPixels(info, &pixel, 4, 0, 0)) { |
| 992 | SkDebugf("pixel = %08x\n", pixel); |
| 993 | } |
| 994 | } |
| 995 | |
| 996 | #StdOut |
| 997 | pixel = 802b5580 |
| 998 | pixel = 8056a9ff |
| 999 | ## |
| 1000 | ## |
| 1001 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1002 | #SeeAlso peekPixels writePixels drawBitmap drawImage SkBitmap::readPixels SkPixmap::readPixels SkImage::readPixels SkSurface::readPixels |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1003 | |
| 1004 | ## |
| 1005 | |
| 1006 | # ------------------------------------------------------------------------------ |
| 1007 | |
| 1008 | #Method bool readPixels(const SkPixmap& pixmap, int srcX, int srcY) |
| 1009 | |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1010 | Copies Rect of pixels from Canvas into pixmap. Matrix and Clip are |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1011 | ignored. |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1012 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1013 | Source Rect corners are (srcX, srcY) and (imageInfo().width(), imageInfo().height()). |
| 1014 | Destination Rect corners are (0, 0) and (pixmap.width(), pixmap.height()). |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1015 | Copies each readable pixel intersecting both rectangles, without scaling, |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1016 | converting to pixmap.colorType() and pixmap.alphaType() if required. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1017 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1018 | Pixels are readable when Device is raster, or backed by a GPU. |
| 1019 | Pixels are not readable when SkCanvas is returned by SkDocument::beginPage, |
| 1020 | returned by SkPictureRecorder::beginRecording, or Canvas is the base of a utility |
Brian Osman | 46fe9c7 | 2018-03-09 15:44:34 -0500 | [diff] [blame] | 1021 | class like SkDebugCanvas. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1022 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1023 | Caller must allocate pixel storage in pixmap if needed. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1024 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 1025 | Pixel values are converted only if Color_Type and Alpha_Type |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1026 | do not match. Only pixels within both source and destination Rects |
| 1027 | are copied. pixmap pixels contents outside Rect intersection are unchanged. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1028 | |
| 1029 | Pass negative values for srcX or srcY to offset pixels across or down pixmap. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1030 | |
| 1031 | Does not copy, and returns false if: |
| 1032 | |
| 1033 | #List |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1034 | # Source and destination rectangles do not intersect. ## |
| 1035 | # Canvas pixels could not be converted to pixmap.colorType() or pixmap.alphaType(). ## |
| 1036 | # Canvas pixels are not readable; for instance, Canvas is document-based. ## |
| 1037 | # Pixmap pixels could not be allocated. ## |
| 1038 | # pixmap.rowBytes() is too small to contain one row of pixels. ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1039 | ## |
| 1040 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1041 | #Param pixmap storage for pixels copied from Canvas ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1042 | #Param srcX offset into readable pixels in x; may be negative ## |
| 1043 | #Param srcY offset into readable pixels in y; may be negative ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1044 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1045 | #Return true if pixels were copied ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1046 | |
| 1047 | #Example |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1048 | #Description |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1049 | clear() takes Unpremultiplied input with Color_Alpha equal 0x80 |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 1050 | and RGB equal 0x55, 0xAA, 0xFF. RGB is multiplied by Color_Alpha |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1051 | to generate Premultiplied value 0x802B5580. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1052 | ## |
| 1053 | void draw(SkCanvas* canvas) { |
| 1054 | canvas->clear(0x8055aaff); |
| 1055 | uint32_t pixels[1] = { 0 }; |
| 1056 | SkPixmap pixmap(SkImageInfo::MakeN32Premul(1, 1), pixels, 4); |
| 1057 | canvas->readPixels(pixmap, 0, 0); |
| 1058 | SkDebugf("pixel = %08x\n", pixels[0]); |
| 1059 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1060 | #StdOut |
| 1061 | pixel = 802b5580 |
| 1062 | ## |
| 1063 | ## |
| 1064 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1065 | #SeeAlso peekPixels writePixels drawBitmap drawImage SkBitmap::readPixels SkPixmap::readPixels SkImage::readPixels SkSurface::readPixels |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1066 | |
| 1067 | ## |
| 1068 | |
| 1069 | # ------------------------------------------------------------------------------ |
| 1070 | |
| 1071 | #Method bool readPixels(const SkBitmap& bitmap, int srcX, int srcY) |
| 1072 | |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1073 | Copies Rect of pixels from Canvas into bitmap. Matrix and Clip are |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1074 | ignored. |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1075 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1076 | Source Rect corners are (srcX, srcY) and (imageInfo().width(), imageInfo().height()). |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1077 | Destination Rect corners are (0, 0) and (bitmap.width(), bitmap.height()). |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1078 | Copies each readable pixel intersecting both rectangles, without scaling, |
| 1079 | converting to bitmap.colorType() and bitmap.alphaType() if required. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1080 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1081 | Pixels are readable when Device is raster, or backed by a GPU. |
| 1082 | Pixels are not readable when SkCanvas is returned by SkDocument::beginPage, |
| 1083 | returned by SkPictureRecorder::beginRecording, or Canvas is the base of a utility |
Brian Osman | 46fe9c7 | 2018-03-09 15:44:34 -0500 | [diff] [blame] | 1084 | class like SkDebugCanvas. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1085 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1086 | Caller must allocate pixel storage in bitmap if needed. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1087 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 1088 | Bitmap values are converted only if Color_Type and Alpha_Type |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1089 | do not match. Only pixels within both source and destination rectangles |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1090 | are copied. Bitmap pixels outside Rect intersection are unchanged. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1091 | |
| 1092 | Pass negative values for srcX or srcY to offset pixels across or down bitmap. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1093 | |
| 1094 | Does not copy, and returns false if: |
| 1095 | |
| 1096 | #List |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1097 | # Source and destination rectangles do not intersect. ## |
| 1098 | # Canvas pixels could not be converted to bitmap.colorType() or bitmap.alphaType(). ## |
| 1099 | # Canvas pixels are not readable; for instance, Canvas is document-based. ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1100 | # bitmap pixels could not be allocated. ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1101 | # bitmap.rowBytes() is too small to contain one row of pixels. ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1102 | ## |
| 1103 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1104 | #Param bitmap storage for pixels copied from Canvas ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1105 | #Param srcX offset into readable pixels in x; may be negative ## |
| 1106 | #Param srcY offset into readable pixels in y; may be negative ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1107 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1108 | #Return true if pixels were copied ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1109 | |
| 1110 | #Example |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1111 | #Description |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1112 | clear() takes Unpremultiplied input with Color_Alpha equal 0x80 |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 1113 | and RGB equal 0x55, 0xAA, 0xFF. RGB is multiplied by Color_Alpha |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1114 | to generate Premultiplied value 0x802B5580. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1115 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1116 | void draw(SkCanvas* canvas) { |
| 1117 | canvas->clear(0x8055aaff); |
| 1118 | SkBitmap bitmap; |
| 1119 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(1, 1)); |
| 1120 | canvas->readPixels(bitmap, 0, 0); |
| 1121 | SkDebugf("pixel = %08x\n", bitmap.getAddr32(0, 0)[0]); |
| 1122 | } |
| 1123 | #StdOut |
| 1124 | pixel = 802b5580 |
| 1125 | ## |
| 1126 | ## |
| 1127 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1128 | #SeeAlso peekPixels writePixels drawBitmap drawImage SkBitmap::readPixels SkPixmap::readPixels SkImage::readPixels SkSurface::readPixels |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1129 | |
| 1130 | ## |
| 1131 | |
| 1132 | # ------------------------------------------------------------------------------ |
| 1133 | |
| 1134 | #Method bool writePixels(const SkImageInfo& info, const void* pixels, size_t rowBytes, int x, int y) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 1135 | #In Pixels |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1136 | #Line # copies and converts rectangle of pixels to Canvas ## |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1137 | Copies Rect from pixels to Canvas. Matrix and Clip are ignored. |
| 1138 | Source Rect corners are (0, 0) and (info.width(), info.height()). |
| 1139 | Destination Rect corners are (x, y) and |
| 1140 | (imageInfo().width(), imageInfo().height()). |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1141 | |
| 1142 | Copies each readable pixel intersecting both rectangles, without scaling, |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1143 | converting to imageInfo().colorType() and imageInfo().alphaType() if required. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1144 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1145 | Pixels are writable when Device is raster, or backed by a GPU. |
| 1146 | Pixels are not writable when SkCanvas is returned by SkDocument::beginPage, |
| 1147 | returned by SkPictureRecorder::beginRecording, or Canvas is the base of a utility |
Brian Osman | 46fe9c7 | 2018-03-09 15:44:34 -0500 | [diff] [blame] | 1148 | class like SkDebugCanvas. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1149 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 1150 | Pixel values are converted only if Color_Type and Alpha_Type |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1151 | do not match. Only pixels within both source and destination rectangles |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1152 | are copied. Canvas pixels outside Rect intersection are unchanged. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1153 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1154 | Pass negative values for x or y to offset pixels to the left or |
| 1155 | above Canvas pixels. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1156 | |
| 1157 | Does not copy, and returns false if: |
| 1158 | |
| 1159 | #List |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1160 | # Source and destination rectangles do not intersect. ## |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1161 | # pixels could not be converted to Canvas imageInfo().colorType() or |
| 1162 | imageInfo().alphaType(). ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1163 | # Canvas pixels are not writable; for instance, Canvas is document-based. ## |
| 1164 | # rowBytes is too small to contain one row of pixels. ## |
| 1165 | ## |
| 1166 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 1167 | #Param info width, height, Color_Type, and Alpha_Type of pixels ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1168 | #Param pixels pixels to copy, of size info.height() times rowBytes, or larger ## |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1169 | #Param rowBytes size of one row of pixels; info.width() times pixel size, or larger ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1170 | #Param x offset into Canvas writable pixels in x; may be negative ## |
| 1171 | #Param y offset into Canvas writable pixels in y; may be negative ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1172 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1173 | #Return true if pixels were written to Canvas ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1174 | |
| 1175 | #Example |
| 1176 | SkImageInfo imageInfo = SkImageInfo::MakeN32(256, 1, kPremul_SkAlphaType); |
| 1177 | for (int y = 0; y < 256; ++y) { |
| 1178 | uint32_t pixels[256]; |
| 1179 | for (int x = 0; x < 256; ++x) { |
| 1180 | pixels[x] = SkColorSetARGB(x, x + y, x, x - y); |
| 1181 | } |
| 1182 | canvas->writePixels(imageInfo, &pixels, sizeof(pixels), 0, y); |
| 1183 | } |
| 1184 | ## |
| 1185 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1186 | #SeeAlso readPixels drawBitmap drawImage SkBitmap::writePixels |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1187 | |
| 1188 | ## |
| 1189 | |
| 1190 | # ------------------------------------------------------------------------------ |
| 1191 | |
| 1192 | #Method bool writePixels(const SkBitmap& bitmap, int x, int y) |
| 1193 | |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1194 | Copies Rect from pixels to Canvas. Matrix and Clip are ignored. |
| 1195 | Source Rect corners are (0, 0) and (bitmap.width(), bitmap.height()). |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1196 | |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1197 | Destination Rect corners are (x, y) and |
| 1198 | (imageInfo().width(), imageInfo().height()). |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1199 | |
| 1200 | Copies each readable pixel intersecting both rectangles, without scaling, |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1201 | converting to imageInfo().colorType() and imageInfo().alphaType() if required. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1202 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1203 | Pixels are writable when Device is raster, or backed by a GPU. |
| 1204 | Pixels are not writable when SkCanvas is returned by SkDocument::beginPage, |
| 1205 | returned by SkPictureRecorder::beginRecording, or Canvas is the base of a utility |
Brian Osman | 46fe9c7 | 2018-03-09 15:44:34 -0500 | [diff] [blame] | 1206 | class like SkDebugCanvas. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1207 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 1208 | Pixel values are converted only if Color_Type and Alpha_Type |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1209 | do not match. Only pixels within both source and destination rectangles |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1210 | are copied. Canvas pixels outside Rect intersection are unchanged. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1211 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1212 | Pass negative values for x or y to offset pixels to the left or |
| 1213 | above Canvas pixels. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1214 | |
| 1215 | Does not copy, and returns false if: |
| 1216 | |
| 1217 | #List |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1218 | # Source and destination rectangles do not intersect. ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1219 | # bitmap does not have allocated pixels. ## |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1220 | # bitmap pixels could not be converted to Canvas imageInfo().colorType() or |
| 1221 | imageInfo().alphaType(). ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1222 | # Canvas pixels are not writable; for instance, Canvas is document based. ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1223 | # bitmap pixels are inaccessible; for instance, bitmap wraps a texture. ## |
| 1224 | ## |
| 1225 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1226 | #Param bitmap contains pixels copied to Canvas ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1227 | #Param x offset into Canvas writable pixels in x; may be negative ## |
| 1228 | #Param y offset into Canvas writable pixels in y; may be negative ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1229 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1230 | #Return true if pixels were written to Canvas ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1231 | |
| 1232 | #Example |
| 1233 | void draw(SkCanvas* canvas) { |
| 1234 | SkImageInfo imageInfo = SkImageInfo::MakeN32Premul(2, 2); |
| 1235 | SkBitmap bitmap; |
| 1236 | bitmap.setInfo(imageInfo); |
| 1237 | uint32_t pixels[4]; |
| 1238 | bitmap.setPixels(pixels); |
| 1239 | for (int y = 0; y < 256; y += 2) { |
| 1240 | for (int x = 0; x < 256; x += 2) { |
| 1241 | pixels[0] = SkColorSetRGB(x, y, x | y); |
| 1242 | pixels[1] = SkColorSetRGB(x ^ y, y, x); |
| 1243 | pixels[2] = SkColorSetRGB(x, x & y, y); |
| 1244 | pixels[3] = SkColorSetRGB(~x, ~y, x); |
| 1245 | canvas->writePixels(bitmap, x, y); |
| 1246 | } |
| 1247 | } |
| 1248 | } |
| 1249 | ## |
| 1250 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1251 | #SeeAlso readPixels drawBitmap drawImage SkBitmap::writePixels |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1252 | |
| 1253 | ## |
| 1254 | |
| 1255 | # ------------------------------------------------------------------------------ |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 1256 | #Subtopic State_Stack |
| 1257 | #Line # stack of state for hierarchical drawing ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1258 | |
| 1259 | Canvas maintains a stack of state that allows hierarchical drawing, commonly used |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1260 | to implement windows and views. The initial state has an identity matrix and and |
| 1261 | an infinite clip. Even with a wide-open clip, drawing is constrained by the |
| 1262 | bounds of the Canvas Surface or Device. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1263 | |
| 1264 | Canvas savable state consists of Clip, Matrix, and Draw_Filter. |
| 1265 | Clip describes the area that may be drawn to. |
| 1266 | Matrix transforms the geometry. |
| 1267 | Draw_Filter (deprecated on most platforms) modifies the paint before drawing. |
| 1268 | |
| 1269 | save(), saveLayer, saveLayerPreserveLCDTextRequests, and saveLayerAlpha |
| 1270 | save state and return the depth of the stack. |
| 1271 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1272 | restore(), restoreToCount, and ~SkCanvas() revert state to its value when saved. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1273 | |
| 1274 | Each state on the stack intersects Clip with the previous Clip, |
| 1275 | and concatenates Matrix with the previous Matrix. |
| 1276 | The intersected Clip makes the drawing area the same or smaller; |
| 1277 | the concatenated Matrix may move the origin and potentially scale or rotate |
| 1278 | the coordinate space. |
| 1279 | |
| 1280 | Canvas does not require balancing the state stack but it is a good idea |
| 1281 | to do so. Calling save() without restore() will eventually cause Skia to fail; |
| 1282 | mismatched save() and restore() create hard to find bugs. |
| 1283 | |
| 1284 | It is not possible to use state to draw outside of the clip defined by the |
| 1285 | previous state. |
| 1286 | |
| 1287 | #Example |
| 1288 | #Description |
| 1289 | Draw to ever smaller clips; then restore drawing to full canvas. |
| 1290 | Note that the second clipRect is not permitted to enlarge Clip. |
| 1291 | ## |
| 1292 | #Height 160 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1293 | void draw(SkCanvas* canvas) { |
| 1294 | SkPaint paint; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1295 | canvas->save(); // records stack depth to restore |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1296 | canvas->clipRect(SkRect::MakeWH(100, 100)); // constrains drawing to clip |
| 1297 | canvas->clear(SK_ColorRED); // draws to limit of clip |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1298 | canvas->save(); // records stack depth to restore |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1299 | canvas->clipRect(SkRect::MakeWH(50, 150)); // Rect below 100 is ignored |
| 1300 | canvas->clear(SK_ColorBLUE); // draws to smaller clip |
| 1301 | canvas->restore(); // enlarges clip |
| 1302 | canvas->drawLine(20, 20, 150, 150, paint); // line below 100 is not drawn |
| 1303 | canvas->restore(); // enlarges clip |
| 1304 | canvas->drawLine(150, 20, 50, 120, paint); // line below 100 is drawn |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1305 | } |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1306 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1307 | |
| 1308 | Each Clip uses the current Matrix for its coordinates. |
| 1309 | |
| 1310 | #Example |
| 1311 | #Description |
| 1312 | While clipRect is given the same rectangle twice, Matrix makes the second |
| 1313 | clipRect draw at half the size of the first. |
| 1314 | ## |
| 1315 | #Height 128 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1316 | void draw(SkCanvas* canvas) { |
| 1317 | canvas->clipRect(SkRect::MakeWH(100, 100)); |
| 1318 | canvas->clear(SK_ColorRED); |
| 1319 | canvas->scale(.5, .5); |
| 1320 | canvas->clipRect(SkRect::MakeWH(100, 100)); |
| 1321 | canvas->clear(SK_ColorBLUE); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1322 | } |
| 1323 | ## |
| 1324 | |
| 1325 | #SeeAlso save() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha restore() restoreToCount |
| 1326 | |
| 1327 | #Method int save() |
| 1328 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1329 | #In State_Stack |
| 1330 | #Line # saves Clip and Matrix on stack ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1331 | Saves Matrix, Clip, and Draw_Filter (Draw_Filter deprecated on most platforms). |
| 1332 | Calling restore() discards changes to Matrix, Clip, and Draw_Filter, |
| 1333 | restoring the Matrix, Clip, and Draw_Filter to their state when save() was called. |
| 1334 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1335 | Matrix may be changed by translate(), scale(), rotate(), skew(), concat(), setMatrix, |
| 1336 | and resetMatrix. Clip may be changed by clipRect, clipRRect, clipPath, clipRegion. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1337 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1338 | Saved Canvas state is put on a stack; multiple calls to save() should be balance |
| 1339 | by an equal number of calls to restore(). |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1340 | |
| 1341 | Call restoreToCount with result to restore this and subsequent saves. |
| 1342 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1343 | #Return depth of saved stack ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1344 | |
| 1345 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1346 | #Description |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1347 | The black square is translated 50 pixels down and to the right. |
| 1348 | Restoring Canvas state removes translate() from Canvas stack; |
| 1349 | the red square is not translated, and is drawn at the origin. |
| 1350 | ## |
| 1351 | #Height 100 |
| 1352 | void draw(SkCanvas* canvas) { |
| 1353 | SkPaint paint; |
| 1354 | SkRect rect = { 0, 0, 25, 25 }; |
| 1355 | canvas->drawRect(rect, paint); |
| 1356 | canvas->save(); |
| 1357 | canvas->translate(50, 50); |
| 1358 | canvas->drawRect(rect, paint); |
| 1359 | canvas->restore(); |
| 1360 | paint.setColor(SK_ColorRED); |
| 1361 | canvas->drawRect(rect, paint); |
| 1362 | } |
| 1363 | ## |
| 1364 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1365 | #SeeAlso saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha restore() restoreToCount |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1366 | |
| 1367 | ## |
| 1368 | |
| 1369 | # ------------------------------------------------------------------------------ |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1370 | |
| 1371 | #Method void restore() |
| 1372 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1373 | #In State_Stack |
| 1374 | #Line # restores changes to Clip and Matrix, pops save stack ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1375 | Removes changes to Matrix, Clip, and Draw_Filter since Canvas state was |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1376 | last saved. The state is removed from the stack. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1377 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1378 | Does nothing if the stack is empty. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1379 | |
| 1380 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1381 | void draw(SkCanvas* canvas) { |
| 1382 | SkCanvas simple; |
| 1383 | SkDebugf("depth = %d\n", simple.getSaveCount()); |
| 1384 | simple.restore(); |
| 1385 | SkDebugf("depth = %d\n", simple.getSaveCount()); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1386 | } |
| 1387 | ## |
| 1388 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1389 | #SeeAlso save() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha restoreToCount |
| 1390 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1391 | ## |
| 1392 | |
| 1393 | # ------------------------------------------------------------------------------ |
| 1394 | |
| 1395 | #Method int getSaveCount() const |
| 1396 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1397 | #In State_Stack |
| 1398 | #Line # returns depth of stack containing Clip and Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1399 | Returns the number of saved states, each containing: Matrix, Clip, and Draw_Filter. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1400 | Equals the number of save() calls less the number of restore() calls plus one. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1401 | The save count of a new canvas is one. |
| 1402 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1403 | #Return depth of save state stack ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1404 | |
| 1405 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1406 | void draw(SkCanvas* canvas) { |
| 1407 | SkCanvas simple; |
| 1408 | SkDebugf("depth = %d\n", simple.getSaveCount()); |
| 1409 | simple.save(); |
| 1410 | SkDebugf("depth = %d\n", simple.getSaveCount()); |
| 1411 | simple.restore(); |
| 1412 | SkDebugf("depth = %d\n", simple.getSaveCount()); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1413 | } |
| 1414 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1415 | depth = 1 |
| 1416 | depth = 2 |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1417 | depth = 1 |
| 1418 | ## |
| 1419 | ## |
| 1420 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1421 | #SeeAlso save() restore() restoreToCount |
| 1422 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1423 | ## |
| 1424 | |
| 1425 | # ------------------------------------------------------------------------------ |
| 1426 | |
| 1427 | #Method void restoreToCount(int saveCount) |
| 1428 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1429 | #In State_Stack |
| 1430 | #Line # restores changes to Clip and Matrix to given depth ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1431 | Restores state to Matrix, Clip, and Draw_Filter values when save(), saveLayer, |
| 1432 | saveLayerPreserveLCDTextRequests, or saveLayerAlpha returned saveCount. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1433 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1434 | Does nothing if saveCount is greater than state stack count. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1435 | Restores state to initial values if saveCount is less than or equal to one. |
| 1436 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1437 | #Param saveCount depth of state stack to restore ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1438 | |
| 1439 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1440 | void draw(SkCanvas* canvas) { |
| 1441 | SkDebugf("depth = %d\n", canvas->getSaveCount()); |
| 1442 | canvas->save(); |
| 1443 | canvas->save(); |
| 1444 | SkDebugf("depth = %d\n", canvas->getSaveCount()); |
| 1445 | canvas->restoreToCount(0); |
| 1446 | SkDebugf("depth = %d\n", canvas->getSaveCount()); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1447 | } |
| 1448 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1449 | depth = 1 |
| 1450 | depth = 3 |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1451 | depth = 1 |
| 1452 | ## |
| 1453 | ## |
| 1454 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1455 | #SeeAlso restore() getSaveCount save() |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1456 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1457 | ## |
| 1458 | |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 1459 | #Subtopic State_Stack ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1460 | |
| 1461 | # ------------------------------------------------------------------------------ |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1462 | |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 1463 | #Subtopic Layer |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1464 | #Substitute layer |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1465 | #Alias Layers |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 1466 | #Line # temporary Bitmap to draw into ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1467 | |
| 1468 | Layer allocates a temporary Bitmap to draw into. When the drawing is |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1469 | complete, the Bitmap is drawn into the Canvas. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1470 | |
| 1471 | Layer is saved in a stack along with other saved state. When state with a Layer |
| 1472 | is restored, the Bitmap is drawn into the previous Layer. |
| 1473 | |
| 1474 | Layer may be initialized with the contents of the previous Layer. When Layer is |
| 1475 | restored, its Bitmap can be modified by Paint passed to Layer to apply |
| 1476 | Color_Alpha, Color_Filter, Image_Filter, and Blend_Mode. |
| 1477 | |
| 1478 | #Method int saveLayer(const SkRect* bounds, const SkPaint* paint) |
| 1479 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1480 | #In Layer |
| 1481 | #Line # saves Clip and Matrix on stack; creates Layer ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1482 | Saves Matrix, Clip, and Draw_Filter (Draw_Filter deprecated on most platforms), |
| 1483 | and allocates a Bitmap for subsequent drawing. |
| 1484 | Calling restore() discards changes to Matrix, Clip, and Draw_Filter, |
| 1485 | and draws the Bitmap. |
| 1486 | |
| 1487 | Matrix may be changed by translate(), scale(), rotate(), skew(), concat(), |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1488 | setMatrix, and resetMatrix. Clip may be changed by clipRect, clipRRect, |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1489 | clipPath, clipRegion. |
| 1490 | |
| 1491 | Rect bounds suggests but does not define the Bitmap size. To clip drawing to |
| 1492 | a specific rectangle, use clipRect. |
| 1493 | |
| 1494 | Optional Paint paint applies Color_Alpha, Color_Filter, Image_Filter, and |
| 1495 | Blend_Mode when restore() is called. |
| 1496 | |
| 1497 | Call restoreToCount with returned value to restore this and subsequent saves. |
| 1498 | |
| 1499 | #Param bounds hint to limit the size of the Layer; may be nullptr ## |
| 1500 | #Param paint graphics state for Layer; may be nullptr ## |
| 1501 | |
| 1502 | #Return depth of saved stack ## |
| 1503 | |
| 1504 | #Example |
| 1505 | #Description |
| 1506 | Rectangles are blurred by Image_Filter when restore() draws Layer to main |
| 1507 | Canvas. |
| 1508 | ## |
| 1509 | #Height 128 |
| 1510 | void draw(SkCanvas* canvas) { |
| 1511 | SkPaint paint, blur; |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1512 | blur.setImageFilter(SkBlurImageFilter::Make(3, 3, nullptr)); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1513 | canvas->saveLayer(nullptr, &blur); |
| 1514 | SkRect rect = { 25, 25, 50, 50}; |
| 1515 | canvas->drawRect(rect, paint); |
| 1516 | canvas->translate(50, 50); |
| 1517 | paint.setColor(SK_ColorRED); |
| 1518 | canvas->drawRect(rect, paint); |
| 1519 | canvas->restore(); |
| 1520 | } |
| 1521 | ## |
| 1522 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1523 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha SaveLayerRec |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1524 | |
| 1525 | ## |
| 1526 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1527 | #Method int saveLayer(const SkRect& bounds, const SkPaint* paint) |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1528 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1529 | #In Layer |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1530 | Saves Matrix, Clip, and Draw_Filter (Draw_Filter deprecated on most platforms), |
| 1531 | and allocates a Bitmap for subsequent drawing. |
| 1532 | Calling restore() discards changes to Matrix, Clip, and Draw_Filter, |
| 1533 | and draws the Bitmap. |
| 1534 | |
| 1535 | Matrix may be changed by translate(), scale(), rotate(), skew(), concat(), |
| 1536 | setMatrix, and resetMatrix. Clip may be changed by clipRect, clipRRect, |
| 1537 | clipPath, clipRegion. |
| 1538 | |
| 1539 | Rect bounds suggests but does not define the Layer size. To clip drawing to |
| 1540 | a specific rectangle, use clipRect. |
| 1541 | |
| 1542 | Optional Paint paint applies Color_Alpha, Color_Filter, Image_Filter, and |
| 1543 | Blend_Mode when restore() is called. |
| 1544 | |
| 1545 | Call restoreToCount with returned value to restore this and subsequent saves. |
| 1546 | |
| 1547 | #Param bounds hint to limit the size of Layer; may be nullptr ## |
| 1548 | #Param paint graphics state for Layer; may be nullptr ## |
| 1549 | |
| 1550 | #Return depth of saved stack ## |
| 1551 | |
| 1552 | #Example |
| 1553 | #Description |
| 1554 | Rectangles are blurred by Image_Filter when restore() draws Layer to main Canvas. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1555 | The red rectangle is clipped; it does not fully fit on Layer. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1556 | Image_Filter blurs past edge of Layer so red rectangle is blurred on all sides. |
| 1557 | ## |
| 1558 | #Height 128 |
| 1559 | void draw(SkCanvas* canvas) { |
| 1560 | SkPaint paint, blur; |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1561 | blur.setImageFilter(SkBlurImageFilter::Make(3, 3, nullptr)); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1562 | canvas->saveLayer(SkRect::MakeWH(90, 90), &blur); |
| 1563 | SkRect rect = { 25, 25, 50, 50}; |
| 1564 | canvas->drawRect(rect, paint); |
| 1565 | canvas->translate(50, 50); |
| 1566 | paint.setColor(SK_ColorRED); |
| 1567 | canvas->drawRect(rect, paint); |
| 1568 | canvas->restore(); |
| 1569 | } |
| 1570 | ## |
| 1571 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1572 | #SeeAlso save() restore() saveLayerPreserveLCDTextRequests saveLayerAlpha SaveLayerRec |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1573 | |
| 1574 | ## |
| 1575 | |
| 1576 | #Method int saveLayerPreserveLCDTextRequests(const SkRect* bounds, const SkPaint* paint) |
| 1577 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1578 | #In Layer |
| 1579 | #Line # saves Clip and Matrix on stack; creates Layer for LCD text ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1580 | Saves Matrix, Clip, and Draw_Filter (Draw_Filter deprecated on most platforms), |
| 1581 | and allocates a Bitmap for subsequent drawing. |
| 1582 | LCD_Text is preserved when the Layer is drawn to the prior Layer. |
| 1583 | |
| 1584 | Calling restore() discards changes to Matrix, Clip, and Draw_Filter, |
| 1585 | and draws Layer. |
| 1586 | |
| 1587 | Matrix may be changed by translate(), scale(), rotate(), skew(), concat(), |
| 1588 | setMatrix, and resetMatrix. Clip may be changed by clipRect, clipRRect, |
| 1589 | clipPath, clipRegion. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1590 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1591 | Rect bounds suggests but does not define the Layer size. To clip drawing to |
| 1592 | a specific rectangle, use clipRect. |
| 1593 | |
| 1594 | Optional Paint paint applies Color_Alpha, Color_Filter, Image_Filter, and |
| 1595 | Blend_Mode when restore() is called. |
| 1596 | |
| 1597 | Call restoreToCount with returned value to restore this and subsequent saves. |
| 1598 | |
| 1599 | Draw text on an opaque background so that LCD_Text blends correctly with the |
| 1600 | prior Layer. LCD_Text drawn on a background with transparency may result in |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1601 | incorrect blending. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1602 | |
| 1603 | #Param bounds hint to limit the size of Layer; may be nullptr ## |
| 1604 | #Param paint graphics state for Layer; may be nullptr ## |
| 1605 | |
| 1606 | #Return depth of saved stack ## |
| 1607 | |
| 1608 | #Example |
| 1609 | SkPaint paint; |
| 1610 | paint.setAntiAlias(true); |
| 1611 | paint.setLCDRenderText(true); |
| 1612 | paint.setTextSize(20); |
| 1613 | for (auto preserve : { false, true } ) { |
| 1614 | preserve ? canvas->saveLayerPreserveLCDTextRequests(nullptr, nullptr) |
| 1615 | : canvas->saveLayer(nullptr, nullptr); |
| 1616 | SkPaint p; |
| 1617 | p.setColor(SK_ColorWHITE); |
| 1618 | // Comment out the next line to draw on a non-opaque background. |
| 1619 | canvas->drawRect(SkRect::MakeLTRB(25, 40, 200, 70), p); |
| 1620 | canvas->drawString("Hamburgefons", 30, 60, paint); |
| 1621 | |
| 1622 | p.setColor(0xFFCCCCCC); |
| 1623 | canvas->drawRect(SkRect::MakeLTRB(25, 70, 200, 100), p); |
| 1624 | canvas->drawString("Hamburgefons", 30, 90, paint); |
| 1625 | |
| 1626 | canvas->restore(); |
| 1627 | canvas->translate(0, 80); |
| 1628 | } |
| 1629 | ## |
| 1630 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1631 | #SeeAlso save() restore() saveLayer saveLayerAlpha SaveLayerRec |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1632 | |
| 1633 | ## |
| 1634 | |
| 1635 | #Method int saveLayerAlpha(const SkRect* bounds, U8CPU alpha) |
| 1636 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1637 | #In Layer |
| 1638 | #Line # saves Clip and Matrix on stack; creates Layer; sets opacity ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1639 | Saves Matrix, Clip, and Draw_Filter (Draw_Filter deprecated on most platforms), |
| 1640 | and allocates Bitmap for subsequent drawing. |
| 1641 | |
| 1642 | Calling restore() discards changes to Matrix, Clip, and Draw_Filter, |
| 1643 | and blends Layer with alpha opacity onto prior Layer. |
| 1644 | |
| 1645 | Matrix may be changed by translate(), scale(), rotate(), skew(), concat(), |
| 1646 | setMatrix, and resetMatrix. Clip may be changed by clipRect, clipRRect, |
| 1647 | clipPath, clipRegion. |
| 1648 | |
| 1649 | Rect bounds suggests but does not define Layer size. To clip drawing to |
| 1650 | a specific rectangle, use clipRect. |
| 1651 | |
| 1652 | alpha of zero is fully transparent, 255 is fully opaque. |
| 1653 | |
| 1654 | Call restoreToCount with returned value to restore this and subsequent saves. |
| 1655 | |
| 1656 | #Param bounds hint to limit the size of Layer; may be nullptr ## |
| 1657 | #Param alpha opacity of Layer ## |
| 1658 | |
| 1659 | #Return depth of saved stack ## |
| 1660 | |
| 1661 | #Example |
| 1662 | SkPaint paint; |
| 1663 | paint.setColor(SK_ColorRED); |
| 1664 | canvas->drawCircle(50, 50, 50, paint); |
| 1665 | canvas->saveLayerAlpha(nullptr, 128); |
| 1666 | paint.setColor(SK_ColorBLUE); |
| 1667 | canvas->drawCircle(100, 50, 50, paint); |
| 1668 | paint.setColor(SK_ColorGREEN); |
| 1669 | paint.setAlpha(128); |
| 1670 | canvas->drawCircle(75, 90, 50, paint); |
| 1671 | canvas->restore(); |
| 1672 | ## |
| 1673 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1674 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests SaveLayerRec |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1675 | |
| 1676 | ## |
| 1677 | |
Cary Clark | d98f78c | 2018-04-26 08:32:37 -0400 | [diff] [blame] | 1678 | #Enum SaveLayerFlagsSet |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 1679 | #Line # sets SaveLayerRec options ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1680 | #Code |
Cary Clark | d98f78c | 2018-04-26 08:32:37 -0400 | [diff] [blame] | 1681 | enum SaveLayerFlagsSet { |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1682 | kPreserveLCDText_SaveLayerFlag = 1 << 1, |
| 1683 | kInitWithPrevious_SaveLayerFlag = 1 << 2, |
Mike Reed | 910ca0f | 2018-04-25 13:04:05 -0400 | [diff] [blame] | 1684 | kMaskAgainstCoverage_EXPERIMENTAL_DONT_USE_SaveLayerFlag = 1 << 3, |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1685 | kDontClipToLayer_Legacy_SaveLayerFlag = kDontClipToLayer_PrivateSaveLayerFlag, |
| 1686 | }; |
Cary Clark | d98f78c | 2018-04-26 08:32:37 -0400 | [diff] [blame] | 1687 | |
| 1688 | typedef uint32_t SaveLayerFlags; |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1689 | ## |
| 1690 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1691 | |
| 1692 | #Typedef uint32_t SaveLayerFlags |
| 1693 | #Line # options for SaveLayerRec ## |
| 1694 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1695 | SaveLayerFlags provides options that may be used in any combination in SaveLayerRec, |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1696 | defining how Layer allocated by saveLayer operates. It may be set to zero, |
| 1697 | kPreserveLCDText_SaveLayerFlag, kInitWithPrevious_SaveLayerFlag, or both flags. |
| 1698 | |
| 1699 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1700 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1701 | #Const kPreserveLCDText_SaveLayerFlag 2 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1702 | #Line # creates Layer for LCD text ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1703 | Creates Layer for LCD text. Flag is ignored if Layer Paint contains |
| 1704 | Image_Filter or Color_Filter. |
| 1705 | ## |
| 1706 | |
| 1707 | #Const kInitWithPrevious_SaveLayerFlag 4 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1708 | #Line # initializes with previous contents ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1709 | Initializes Layer with the contents of the previous Layer. |
| 1710 | ## |
| 1711 | |
Mike Reed | 910ca0f | 2018-04-25 13:04:05 -0400 | [diff] [blame] | 1712 | #Const kMaskAgainstCoverage_EXPERIMENTAL_DONT_USE_SaveLayerFlag 8 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1713 | #Experimental do not use |
Mike Reed | 910ca0f | 2018-04-25 13:04:05 -0400 | [diff] [blame] | 1714 | ## |
| 1715 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1716 | #Const kDontClipToLayer_Legacy_SaveLayerFlag 0x80000000 |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1717 | #Deprecated soon |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1718 | ## |
| 1719 | |
| 1720 | #Example |
| 1721 | #Height 160 |
| 1722 | #Description |
| 1723 | Canvas Layer captures red and blue circles scaled up by four. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1724 | scalePaint blends Layer back with transparency. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1725 | ## |
| 1726 | void draw(SkCanvas* canvas) { |
| 1727 | SkPaint redPaint, bluePaint, scalePaint; |
| 1728 | redPaint.setColor(SK_ColorRED); |
| 1729 | canvas->drawCircle(21, 21, 8, redPaint); |
| 1730 | bluePaint.setColor(SK_ColorBLUE); |
| 1731 | canvas->drawCircle(31, 21, 8, bluePaint); |
| 1732 | SkMatrix matrix; |
| 1733 | matrix.setScale(4, 4); |
| 1734 | scalePaint.setAlpha(0x40); |
| 1735 | scalePaint.setImageFilter( |
| 1736 | SkImageFilter::MakeMatrixFilter(matrix, kNone_SkFilterQuality, nullptr)); |
| 1737 | SkCanvas::SaveLayerRec saveLayerRec(nullptr, &scalePaint, |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1738 | SkCanvas::kInitWithPrevious_SaveLayerFlag); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1739 | canvas->saveLayer(saveLayerRec); |
| 1740 | canvas->restore(); |
| 1741 | } |
| 1742 | ## |
| 1743 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1744 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha SaveLayerRec |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1745 | |
| 1746 | #Enum ## |
| 1747 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1748 | #Subtopic SaveLayerRec |
| 1749 | #Line # contains the state used to create the Layer ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1750 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1751 | #Struct SaveLayerRec |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 1752 | #Line # contains the state used to create the Layer ## |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1753 | |
| 1754 | SaveLayerRec contains the state used to create the Layer. |
| 1755 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1756 | #Code |
| 1757 | struct SaveLayerRec { |
| 1758 | SaveLayerRec*(... |
| 1759 | |
| 1760 | const SkRect* fBounds; |
| 1761 | const SkPaint* fPaint; |
| 1762 | const SkImageFilter* fBackdrop; |
| 1763 | SaveLayerFlags fSaveLayerFlags; |
| 1764 | }; |
| 1765 | ## |
| 1766 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1767 | #Subtopic Overview |
| 1768 | #Populate |
| 1769 | ## |
| 1770 | |
| 1771 | #Subtopic Member |
| 1772 | #Populate |
| 1773 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1774 | |
| 1775 | #Member const SkRect* fBounds |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1776 | #Line # hints at Layer size limit ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1777 | fBounds is used as a hint to limit the size of Layer; may be nullptr. |
| 1778 | fBounds suggests but does not define Layer size. To clip drawing to |
| 1779 | a specific rectangle, use clipRect. |
| 1780 | ## |
| 1781 | |
| 1782 | #Member const SkPaint* fPaint |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1783 | #Line # modifies overlay ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1784 | fPaint modifies how Layer overlays the prior Layer; may be nullptr. |
| 1785 | Color_Alpha, Blend_Mode, Color_Filter, Draw_Looper, Image_Filter, and |
| 1786 | Mask_Filter affect Layer draw. |
| 1787 | ## |
| 1788 | |
| 1789 | #Member const SkImageFilter* fBackdrop |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1790 | #Line # applies Image_Filter to prior Layer ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1791 | fBackdrop applies Image_Filter to the prior Layer when copying to the Layer; |
| 1792 | may be nullptr. Use kInitWithPrevious_SaveLayerFlag to copy the |
| 1793 | prior Layer without an Image_Filter. |
| 1794 | ## |
| 1795 | |
| 1796 | #Member const SkImage* fClipMask |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1797 | #Line # clips Layer with Mask_Alpha ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1798 | restore() clips Layer by the Color_Alpha channel of fClipMask when |
| 1799 | Layer is copied to Device. fClipMask may be nullptr. . |
| 1800 | ## |
| 1801 | |
| 1802 | #Member const SkMatrix* fClipMatrix |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1803 | #Line # transforms Mask_Alpha used to clip ## |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1804 | fClipMatrix transforms fClipMask before it clips Layer. If |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1805 | fClipMask describes a translucent gradient, it may be scaled and rotated |
| 1806 | without introducing artifacts. fClipMatrix may be nullptr. |
| 1807 | ## |
| 1808 | |
| 1809 | #Member SaveLayerFlags fSaveLayerFlags |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1810 | #Line # preserves LCD Text, creates with prior Layer contents ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1811 | fSaveLayerFlags are used to create Layer without transparency, |
| 1812 | create Layer for LCD text, and to create Layer with the |
| 1813 | contents of the previous Layer. |
| 1814 | ## |
| 1815 | |
| 1816 | #Example |
| 1817 | #Height 160 |
| 1818 | #Description |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 1819 | Canvas Layer captures a red Anti_Aliased circle and a blue Aliased circle scaled |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1820 | up by four. After drawing another red circle without scaling on top, the Layer is |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1821 | transferred to the main canvas. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1822 | ## |
| 1823 | void draw(SkCanvas* canvas) { |
| 1824 | SkPaint redPaint, bluePaint; |
| 1825 | redPaint.setAntiAlias(true); |
| 1826 | redPaint.setColor(SK_ColorRED); |
| 1827 | canvas->drawCircle(21, 21, 8, redPaint); |
| 1828 | bluePaint.setColor(SK_ColorBLUE); |
| 1829 | canvas->drawCircle(31, 21, 8, bluePaint); |
| 1830 | SkMatrix matrix; |
| 1831 | matrix.setScale(4, 4); |
| 1832 | auto scaler = SkImageFilter::MakeMatrixFilter(matrix, kNone_SkFilterQuality, nullptr); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1833 | SkCanvas::SaveLayerRec saveLayerRec(nullptr, nullptr, scaler.get(), 0); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1834 | canvas->saveLayer(saveLayerRec); |
| 1835 | canvas->drawCircle(125, 85, 8, redPaint); |
| 1836 | canvas->restore(); |
| 1837 | } |
| 1838 | ## |
| 1839 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1840 | #Subtopic Constructor |
| 1841 | #Populate |
| 1842 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1843 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1844 | #Method SaveLayerRec() |
| 1845 | #Line # constructs SaveLayerRec ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1846 | Sets fBounds, fPaint, and fBackdrop to nullptr. Clears fSaveLayerFlags. |
| 1847 | |
| 1848 | #Return empty SaveLayerRec ## |
| 1849 | |
| 1850 | #Example |
| 1851 | SkCanvas::SaveLayerRec rec1; |
Mike Klein | e083f7c | 2018-02-07 12:54:27 -0500 | [diff] [blame] | 1852 | rec1.fSaveLayerFlags = SkCanvas::kPreserveLCDText_SaveLayerFlag; |
| 1853 | SkCanvas::SaveLayerRec rec2(nullptr, nullptr, SkCanvas::kPreserveLCDText_SaveLayerFlag); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1854 | SkDebugf("rec1 %c= rec2\n", rec1.fBounds == rec2.fBounds |
| 1855 | && rec1.fPaint == rec2.fPaint |
| 1856 | && rec1.fBackdrop == rec2.fBackdrop |
| 1857 | && rec1.fSaveLayerFlags == rec2.fSaveLayerFlags ? '=' : '!'); |
| 1858 | #StdOut |
| 1859 | rec1 == rec2 |
| 1860 | ## |
| 1861 | ## |
| 1862 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1863 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha |
| 1864 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1865 | ## |
| 1866 | |
Cary Clark | d98f78c | 2018-04-26 08:32:37 -0400 | [diff] [blame] | 1867 | #Method SaveLayerRec(const SkRect* bounds, const SkPaint* paint, |
| 1868 | SaveLayerFlags saveLayerFlags = 0) |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1869 | |
| 1870 | Sets fBounds, fPaint, and fSaveLayerFlags; sets fBackdrop to nullptr. |
| 1871 | |
| 1872 | #Param bounds Layer dimensions; may be nullptr ## |
| 1873 | #Param paint applied to Layer when overlaying prior Layer; may be nullptr ## |
| 1874 | #Param saveLayerFlags SaveLayerRec options to modify Layer ## |
| 1875 | |
| 1876 | #Return SaveLayerRec with empty backdrop ## |
| 1877 | |
| 1878 | #Example |
| 1879 | SkCanvas::SaveLayerRec rec1; |
| 1880 | SkCanvas::SaveLayerRec rec2(nullptr, nullptr); |
| 1881 | SkDebugf("rec1 %c= rec2\n", rec1.fBounds == rec2.fBounds |
| 1882 | && rec1.fPaint == rec2.fPaint |
| 1883 | && rec1.fBackdrop == rec2.fBackdrop |
| 1884 | && rec1.fSaveLayerFlags == rec2.fSaveLayerFlags ? '=' : '!'); |
| 1885 | #StdOut |
| 1886 | rec1 == rec2 |
| 1887 | ## |
| 1888 | ## |
| 1889 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1890 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha |
| 1891 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1892 | ## |
| 1893 | |
| 1894 | #Method SaveLayerRec(const SkRect* bounds, const SkPaint* paint, const SkImageFilter* backdrop, |
| 1895 | SaveLayerFlags saveLayerFlags) |
| 1896 | |
| 1897 | Sets fBounds, fPaint, fBackdrop, and fSaveLayerFlags. |
| 1898 | |
| 1899 | #Param bounds Layer dimensions; may be nullptr ## |
| 1900 | #Param paint applied to Layer when overlaying prior Layer; |
| 1901 | may be nullptr |
| 1902 | ## |
| 1903 | #Param backdrop prior Layer copied with Image_Filter; may be nullptr |
| 1904 | ## |
| 1905 | #Param saveLayerFlags SaveLayerRec options to modify Layer ## |
| 1906 | |
| 1907 | #Return SaveLayerRec fully specified ## |
| 1908 | |
| 1909 | #Example |
| 1910 | SkCanvas::SaveLayerRec rec1; |
| 1911 | SkCanvas::SaveLayerRec rec2(nullptr, nullptr, nullptr, 0); |
| 1912 | SkDebugf("rec1 %c= rec2\n", rec1.fBounds == rec2.fBounds |
| 1913 | && rec1.fPaint == rec2.fPaint |
| 1914 | && rec1.fBackdrop == rec2.fBackdrop |
| 1915 | && rec1.fSaveLayerFlags == rec2.fSaveLayerFlags ? '=' : '!'); |
| 1916 | #StdOut |
| 1917 | rec1 == rec2 |
| 1918 | ## |
| 1919 | ## |
| 1920 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1921 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha |
| 1922 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1923 | ## |
| 1924 | |
| 1925 | #Method SaveLayerRec(const SkRect* bounds, const SkPaint* paint, const SkImageFilter* backdrop, |
| 1926 | const SkImage* clipMask, const SkMatrix* clipMatrix, |
| 1927 | SaveLayerFlags saveLayerFlags) |
| 1928 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1929 | #Experimental not ready |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1930 | |
| 1931 | Sets fBounds, fPaint, fBackdrop, fClipMask, fClipMatrix, and fSaveLayerFlags. |
| 1932 | clipMatrix uses Color_Alpha channel of image, transformed by clipMatrix, to clip |
| 1933 | Layer when drawn to Canvas. |
| 1934 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1935 | Implementation is not complete; has no effect if Device is GPU-backed. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1936 | |
| 1937 | #Param bounds Layer dimensions; may be nullptr ## |
| 1938 | #Param paint graphics state applied to Layer when overlaying prior |
| 1939 | Layer; may be nullptr |
| 1940 | ## |
| 1941 | #Param backdrop prior Layer copied with Image_Filter; |
| 1942 | may be nullptr |
| 1943 | ## |
| 1944 | #Param clipMask clip applied to Layer; may be nullptr ## |
| 1945 | #Param clipMatrix matrix applied to clipMask; may be nullptr to use |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1946 | identity matrix |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1947 | ## |
| 1948 | #Param saveLayerFlags SaveLayerRec options to modify Layer ## |
| 1949 | |
| 1950 | #Return SaveLayerRec fully specified ## |
| 1951 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1952 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1953 | |
| 1954 | ## |
| 1955 | |
| 1956 | #Struct ## |
| 1957 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1958 | #Subtopic ## |
| 1959 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1960 | #Method int saveLayer(const SaveLayerRec& layerRec) |
| 1961 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1962 | #In Layer |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1963 | Saves Matrix, Clip, and Draw_Filter (Draw_Filter deprecated on most platforms), |
| 1964 | and allocates Bitmap for subsequent drawing. |
| 1965 | |
| 1966 | Calling restore() discards changes to Matrix, Clip, and Draw_Filter, |
| 1967 | and blends Bitmap with Color_Alpha opacity onto the prior Layer. |
| 1968 | |
| 1969 | Matrix may be changed by translate(), scale(), rotate(), skew(), concat(), |
| 1970 | setMatrix, and resetMatrix. Clip may be changed by clipRect, clipRRect, |
| 1971 | clipPath, clipRegion. |
| 1972 | |
| 1973 | SaveLayerRec contains the state used to create the Layer. |
| 1974 | |
| 1975 | Call restoreToCount with returned value to restore this and subsequent saves. |
| 1976 | |
| 1977 | #Param layerRec Layer state ## |
| 1978 | |
| 1979 | #Return depth of save state stack ## |
| 1980 | |
| 1981 | #Example |
| 1982 | #Description |
| 1983 | The example draws an image, and saves it into a Layer with kInitWithPrevious_SaveLayerFlag. |
| 1984 | Next it punches a hole in Layer and restore with SkBlendMode::kPlus. |
| 1985 | Where Layer was cleared, the original image will draw unchanged. |
| 1986 | Outside of the circle the mandrill is brightened. |
| 1987 | ## |
| 1988 | #Image 3 |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 1989 | // sk_sp<SkImage> image = GetResourceAsImage("images/mandrill_256.png"); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1990 | canvas->drawImage(image, 0, 0, nullptr); |
| 1991 | SkCanvas::SaveLayerRec rec; |
| 1992 | SkPaint paint; |
| 1993 | paint.setBlendMode(SkBlendMode::kPlus); |
| 1994 | rec.fSaveLayerFlags = SkCanvas::kInitWithPrevious_SaveLayerFlag; |
| 1995 | rec.fPaint = &paint; |
| 1996 | canvas->saveLayer(rec); |
| 1997 | paint.setBlendMode(SkBlendMode::kClear); |
| 1998 | canvas->drawCircle(128, 128, 96, paint); |
| 1999 | canvas->restore(); |
| 2000 | ## |
| 2001 | |
| 2002 | #ToDo above example needs to replace GetResourceAsImage with way to select image in fiddle ## |
| 2003 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2004 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha |
| 2005 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2006 | ## |
| 2007 | |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 2008 | #Subtopic Layer ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2009 | |
| 2010 | # ------------------------------------------------------------------------------ |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 2011 | #Subtopic Matrix |
| 2012 | #Line # coordinate transformation ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2013 | |
| 2014 | #Method void translate(SkScalar dx, SkScalar dy) |
| 2015 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2016 | #In Matrix |
| 2017 | #Line # translates Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2018 | Translate Matrix by dx along the x-axis and dy along the y-axis. |
| 2019 | |
| 2020 | Mathematically, replace Matrix with a translation matrix |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2021 | Premultiplied with Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2022 | |
| 2023 | This has the effect of moving the drawing by (dx, dy) before transforming |
| 2024 | the result with Matrix. |
| 2025 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2026 | #Param dx distance to translate in x ## |
| 2027 | #Param dy distance to translate in y ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2028 | |
| 2029 | #Example |
| 2030 | #Height 128 |
| 2031 | #Description |
| 2032 | scale() followed by translate() produces different results from translate() followed |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2033 | by scale(). |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2034 | |
| 2035 | The blue stroke follows translate of (50, 50); a black |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2036 | fill follows scale of (2, 1/2.f). After restoring the clip, which resets |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2037 | Matrix, a red frame follows the same scale of (2, 1/2.f); a gray fill |
| 2038 | follows translate of (50, 50). |
| 2039 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2040 | void draw(SkCanvas* canvas) { |
| 2041 | SkPaint filledPaint; |
| 2042 | SkPaint outlinePaint; |
| 2043 | outlinePaint.setStyle(SkPaint::kStroke_Style); |
| 2044 | outlinePaint.setColor(SK_ColorBLUE); |
| 2045 | canvas->save(); |
| 2046 | canvas->translate(50, 50); |
| 2047 | canvas->drawCircle(28, 28, 15, outlinePaint); // blue center: (50+28, 50+28) |
| 2048 | canvas->scale(2, 1/2.f); |
| 2049 | canvas->drawCircle(28, 28, 15, filledPaint); // black center: (50+(28*2), 50+(28/2)) |
| 2050 | canvas->restore(); |
| 2051 | filledPaint.setColor(SK_ColorGRAY); |
| 2052 | outlinePaint.setColor(SK_ColorRED); |
| 2053 | canvas->scale(2, 1/2.f); |
| 2054 | canvas->drawCircle(28, 28, 15, outlinePaint); // red center: (28*2, 28/2) |
| 2055 | canvas->translate(50, 50); |
| 2056 | canvas->drawCircle(28, 28, 15, filledPaint); // gray center: ((50+28)*2, (50+28)/2) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2057 | } |
| 2058 | ## |
| 2059 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2060 | #SeeAlso concat() scale() skew() rotate() setMatrix |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2061 | |
| 2062 | ## |
| 2063 | |
| 2064 | # ------------------------------------------------------------------------------ |
| 2065 | |
| 2066 | #Method void scale(SkScalar sx, SkScalar sy) |
| 2067 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2068 | #In Matrix |
| 2069 | #Line # scales Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2070 | Scale Matrix by sx on the x-axis and sy on the y-axis. |
| 2071 | |
| 2072 | Mathematically, replace Matrix with a scale matrix |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2073 | Premultiplied with Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2074 | |
| 2075 | This has the effect of scaling the drawing by (sx, sy) before transforming |
| 2076 | the result with Matrix. |
| 2077 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2078 | #Param sx amount to scale in x ## |
| 2079 | #Param sy amount to scale in y ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2080 | |
| 2081 | #Example |
| 2082 | #Height 160 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2083 | void draw(SkCanvas* canvas) { |
| 2084 | SkPaint paint; |
| 2085 | SkRect rect = { 10, 20, 60, 120 }; |
| 2086 | canvas->translate(20, 20); |
| 2087 | canvas->drawRect(rect, paint); |
| 2088 | canvas->scale(2, .5f); |
| 2089 | paint.setColor(SK_ColorGRAY); |
| 2090 | canvas->drawRect(rect, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2091 | } |
| 2092 | ## |
| 2093 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2094 | #SeeAlso concat() translate() skew() rotate() setMatrix |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2095 | |
| 2096 | ## |
| 2097 | |
| 2098 | # ------------------------------------------------------------------------------ |
| 2099 | |
| 2100 | #Method void rotate(SkScalar degrees) |
| 2101 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2102 | #In Matrix |
| 2103 | #Line # rotates Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2104 | Rotate Matrix by degrees. Positive degrees rotates clockwise. |
| 2105 | |
| 2106 | Mathematically, replace Matrix with a rotation matrix |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2107 | Premultiplied with Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2108 | |
| 2109 | This has the effect of rotating the drawing by degrees before transforming |
| 2110 | the result with Matrix. |
| 2111 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2112 | #Param degrees amount to rotate, in degrees ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2113 | |
| 2114 | #Example |
| 2115 | #Description |
| 2116 | Draw clock hands at time 5:10. The hour hand and minute hand point up and |
| 2117 | are rotated clockwise. |
| 2118 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2119 | void draw(SkCanvas* canvas) { |
| 2120 | SkPaint paint; |
| 2121 | paint.setStyle(SkPaint::kStroke_Style); |
| 2122 | canvas->translate(128, 128); |
| 2123 | canvas->drawCircle(0, 0, 60, paint); |
| 2124 | canvas->save(); |
| 2125 | canvas->rotate(10 * 360 / 60); // 10 minutes of 60 scaled to 360 degrees |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2126 | canvas->drawLine(0, 0, 0, -50, paint); |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2127 | canvas->restore(); |
| 2128 | canvas->rotate((5 + 10.f/60) * 360 / 12); // 5 and 10/60 hours of 12 scaled to 360 degrees |
| 2129 | canvas->drawLine(0, 0, 0, -30, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2130 | } |
| 2131 | ## |
| 2132 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2133 | #SeeAlso concat() translate() skew() scale() setMatrix |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2134 | |
| 2135 | ## |
| 2136 | |
| 2137 | # ------------------------------------------------------------------------------ |
| 2138 | |
| 2139 | #Method void rotate(SkScalar degrees, SkScalar px, SkScalar py) |
| 2140 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2141 | #In Matrix |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2142 | Rotate Matrix by degrees about a point at (px, py). Positive degrees rotates |
| 2143 | clockwise. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2144 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2145 | Mathematically, construct a rotation matrix. Premultiply the rotation matrix by |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2146 | a translation matrix, then replace Matrix with the resulting matrix |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2147 | Premultiplied with Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2148 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2149 | This has the effect of rotating the drawing about a given point before |
| 2150 | transforming the result with Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2151 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2152 | #Param degrees amount to rotate, in degrees ## |
| 2153 | #Param px x-coordinate of the point to rotate about ## |
| 2154 | #Param py y-coordinate of the point to rotate about ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2155 | |
| 2156 | #Example |
| 2157 | #Height 192 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2158 | void draw(SkCanvas* canvas) { |
| 2159 | SkPaint paint; |
| 2160 | paint.setTextSize(96); |
| 2161 | canvas->drawString("A1", 130, 100, paint); |
| 2162 | canvas->rotate(180, 130, 100); |
| 2163 | canvas->drawString("A1", 130, 100, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2164 | } |
| 2165 | ## |
| 2166 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2167 | #SeeAlso concat() translate() skew() scale() setMatrix |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2168 | |
| 2169 | ## |
| 2170 | |
| 2171 | # ------------------------------------------------------------------------------ |
| 2172 | |
| 2173 | #Method void skew(SkScalar sx, SkScalar sy) |
| 2174 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2175 | #In Matrix |
| 2176 | #Line # skews Matrix ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2177 | Skew Matrix by sx on the x-axis and sy on the y-axis. A positive value of sx |
| 2178 | skews the drawing right as y increases; a positive value of sy skews the drawing |
| 2179 | down as x increases. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2180 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2181 | Mathematically, replace Matrix with a skew matrix Premultiplied with Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2182 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2183 | This has the effect of skewing the drawing by (sx, sy) before transforming |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2184 | the result with Matrix. |
| 2185 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2186 | #Param sx amount to skew in x ## |
| 2187 | #Param sy amount to skew in y ## |
| 2188 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2189 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2190 | #Description |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2191 | Black text mimics an oblique text style by using a negative skew in x that |
| 2192 | shifts the geometry to the right as the y values decrease. |
| 2193 | Red text uses a positive skew in y to shift the geometry down as the x values |
| 2194 | increase. |
| 2195 | Blue text combines x and y skew to rotate and scale. |
| 2196 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2197 | SkPaint paint; |
| 2198 | paint.setTextSize(128); |
| 2199 | canvas->translate(30, 130); |
| 2200 | canvas->save(); |
| 2201 | canvas->skew(-.5, 0); |
| 2202 | canvas->drawString("A1", 0, 0, paint); |
| 2203 | canvas->restore(); |
| 2204 | canvas->save(); |
| 2205 | canvas->skew(0, .5); |
| 2206 | paint.setColor(SK_ColorRED); |
| 2207 | canvas->drawString("A1", 0, 0, paint); |
| 2208 | canvas->restore(); |
| 2209 | canvas->skew(-.5, .5); |
| 2210 | paint.setColor(SK_ColorBLUE); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2211 | canvas->drawString("A1", 0, 0, paint); |
| 2212 | ## |
| 2213 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2214 | #SeeAlso concat() translate() rotate() scale() setMatrix |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2215 | |
| 2216 | ## |
| 2217 | |
| 2218 | # ------------------------------------------------------------------------------ |
| 2219 | |
| 2220 | #Method void concat(const SkMatrix& matrix) |
| 2221 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2222 | #In Matrix |
| 2223 | #Line # multiplies Matrix by Matrix ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2224 | Replace Matrix with matrix Premultiplied with existing Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2225 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2226 | This has the effect of transforming the drawn geometry by matrix, before |
| 2227 | transforming the result with existing Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2228 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2229 | #Param matrix matrix to Premultiply with existing Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2230 | |
| 2231 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2232 | void draw(SkCanvas* canvas) { |
| 2233 | SkPaint paint; |
| 2234 | paint.setTextSize(80); |
| 2235 | paint.setTextScaleX(.3); |
| 2236 | SkMatrix matrix; |
| 2237 | SkRect rect[2] = {{ 10, 20, 90, 110 }, { 40, 130, 140, 180 }}; |
| 2238 | matrix.setRectToRect(rect[0], rect[1], SkMatrix::kFill_ScaleToFit); |
| 2239 | canvas->drawRect(rect[0], paint); |
| 2240 | canvas->drawRect(rect[1], paint); |
| 2241 | paint.setColor(SK_ColorWHITE); |
| 2242 | canvas->drawString("Here", rect[0].fLeft + 10, rect[0].fBottom - 10, paint); |
| 2243 | canvas->concat(matrix); |
| 2244 | canvas->drawString("There", rect[0].fLeft + 10, rect[0].fBottom - 10, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2245 | } |
| 2246 | ## |
| 2247 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2248 | #SeeAlso translate() rotate() scale() skew() setMatrix |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2249 | |
| 2250 | ## |
| 2251 | |
| 2252 | # ------------------------------------------------------------------------------ |
| 2253 | |
| 2254 | #Method void setMatrix(const SkMatrix& matrix) |
| 2255 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2256 | #In Matrix |
| 2257 | #Line # sets Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2258 | Replace Matrix with matrix. |
| 2259 | Unlike concat(), any prior matrix state is overwritten. |
| 2260 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2261 | #Param matrix matrix to copy, replacing existing Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2262 | |
| 2263 | #Example |
| 2264 | #Height 128 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2265 | void draw(SkCanvas* canvas) { |
| 2266 | SkPaint paint; |
| 2267 | canvas->scale(4, 6); |
| 2268 | canvas->drawString("truth", 2, 10, paint); |
| 2269 | SkMatrix matrix; |
| 2270 | matrix.setScale(2.8f, 6); |
| 2271 | canvas->setMatrix(matrix); |
| 2272 | canvas->drawString("consequences", 2, 20, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2273 | } |
| 2274 | ## |
| 2275 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2276 | #SeeAlso resetMatrix concat() translate() rotate() scale() skew() |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2277 | |
| 2278 | ## |
| 2279 | |
| 2280 | # ------------------------------------------------------------------------------ |
| 2281 | |
| 2282 | #Method void resetMatrix() |
| 2283 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2284 | #In Matrix |
| 2285 | #Line # resets Matrix to identity ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2286 | Sets Matrix to the identity matrix. |
| 2287 | Any prior matrix state is overwritten. |
| 2288 | |
| 2289 | #Example |
| 2290 | #Height 128 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2291 | void draw(SkCanvas* canvas) { |
| 2292 | SkPaint paint; |
| 2293 | canvas->scale(4, 6); |
| 2294 | canvas->drawString("truth", 2, 10, paint); |
| 2295 | canvas->resetMatrix(); |
| 2296 | canvas->scale(2.8f, 6); |
| 2297 | canvas->drawString("consequences", 2, 20, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2298 | } |
| 2299 | ## |
| 2300 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2301 | #SeeAlso setMatrix concat() translate() rotate() scale() skew() |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2302 | |
| 2303 | ## |
| 2304 | |
| 2305 | # ------------------------------------------------------------------------------ |
| 2306 | |
| 2307 | #Method const SkMatrix& getTotalMatrix() const |
| 2308 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2309 | #In Matrix |
| 2310 | #Line # returns Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2311 | Returns Matrix. |
| 2312 | This does not account for translation by Device or Surface. |
| 2313 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2314 | #Return Matrix in Canvas ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2315 | |
| 2316 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2317 | SkDebugf("isIdentity %s\n", canvas->getTotalMatrix().isIdentity() ? "true" : "false"); |
| 2318 | #StdOut |
| 2319 | isIdentity true |
| 2320 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2321 | ## |
| 2322 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2323 | #SeeAlso setMatrix resetMatrix concat() |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2324 | |
| 2325 | ## |
| 2326 | |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 2327 | #Subtopic Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2328 | |
| 2329 | # ------------------------------------------------------------------------------ |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 2330 | #Subtopic Clip |
| 2331 | #Line # stack of clipping Paths ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2332 | |
| 2333 | Clip is built from a stack of clipping paths. Each Path in the |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2334 | stack can be constructed from one or more Path_Contour elements. The |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2335 | Path_Contour may be composed of any number of Path_Verb segments. Each |
| 2336 | Path_Contour forms a closed area; Path_Fill_Type defines the area enclosed |
| 2337 | by Path_Contour. |
| 2338 | |
| 2339 | Clip stack of Path elements successfully restrict the Path area. Each |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2340 | Path is transformed by Matrix, then intersected with or subtracted from the |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2341 | prior Clip to form the replacement Clip. Use SkClipOp::kDifference |
| 2342 | to subtract Path from Clip; use SkClipOp::kIntersect to intersect Path |
| 2343 | with Clip. |
| 2344 | |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2345 | A clipping Path may be Anti_Aliased; if Path, after transformation, is |
| 2346 | composed of horizontal and vertical lines, clearing Anti_Alias allows whole pixels |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2347 | to either be inside or outside the clip. The fastest drawing has a Aliased, |
| 2348 | rectangular clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2349 | |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2350 | If clipping Path has Anti_Alias set, clip may partially clip a pixel, requiring |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2351 | that drawing blend partially with the destination along the edge. A rotated |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2352 | rectangular Anti_Aliased clip looks smoother but draws slower. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2353 | |
| 2354 | Clip can combine with Rect and Round_Rect primitives; like |
| 2355 | Path, these are transformed by Matrix before they are combined with Clip. |
| 2356 | |
| 2357 | Clip can combine with Region. Region is assumed to be in Device coordinates |
| 2358 | and is unaffected by Matrix. |
| 2359 | |
| 2360 | #Example |
| 2361 | #Height 90 |
| 2362 | #Description |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2363 | Draw a red circle with an Aliased clip and an Anti_Aliased clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2364 | Use an image filter to zoom into the pixels drawn. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2365 | The edge of the Aliased clip fully draws pixels in the red circle. |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2366 | The edge of the Anti_Aliased clip partially draws pixels in the red circle. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2367 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2368 | SkPaint redPaint, scalePaint; |
| 2369 | redPaint.setAntiAlias(true); |
| 2370 | redPaint.setColor(SK_ColorRED); |
| 2371 | canvas->save(); |
| 2372 | for (bool antialias : { false, true } ) { |
| 2373 | canvas->save(); |
| 2374 | canvas->clipRect(SkRect::MakeWH(19.5f, 11.5f), antialias); |
| 2375 | canvas->drawCircle(17, 11, 8, redPaint); |
| 2376 | canvas->restore(); |
| 2377 | canvas->translate(16, 0); |
| 2378 | } |
| 2379 | canvas->restore(); |
| 2380 | SkMatrix matrix; |
| 2381 | matrix.setScale(6, 6); |
| 2382 | scalePaint.setImageFilter( |
| 2383 | SkImageFilter::MakeMatrixFilter(matrix, kNone_SkFilterQuality, nullptr)); |
| 2384 | SkCanvas::SaveLayerRec saveLayerRec( |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2385 | nullptr, &scalePaint, SkCanvas::kInitWithPrevious_SaveLayerFlag); |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2386 | canvas->saveLayer(saveLayerRec); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2387 | canvas->restore(); |
| 2388 | ## |
| 2389 | |
| 2390 | #Method void clipRect(const SkRect& rect, SkClipOp op, bool doAntiAlias) |
| 2391 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2392 | #In Clip |
| 2393 | #Line # combines Clip with Rect ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2394 | Replace Clip with the intersection or difference of Clip and rect, |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2395 | with an Aliased or Anti_Aliased clip edge. rect is transformed by Matrix |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2396 | before it is combined with Clip. |
| 2397 | |
Cary Clark | a523d2d | 2017-08-30 08:58:10 -0400 | [diff] [blame] | 2398 | #Param rect Rect to combine with Clip ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2399 | #Param op Clip_Op to apply to Clip ## |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2400 | #Param doAntiAlias true if Clip is to be Anti_Aliased ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2401 | |
| 2402 | #Example |
| 2403 | #Height 128 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2404 | void draw(SkCanvas* canvas) { |
| 2405 | canvas->rotate(10); |
| 2406 | SkPaint paint; |
| 2407 | paint.setAntiAlias(true); |
| 2408 | for (auto alias: { false, true } ) { |
| 2409 | canvas->save(); |
| 2410 | canvas->clipRect(SkRect::MakeWH(90, 80), SkClipOp::kIntersect, alias); |
| 2411 | canvas->drawCircle(100, 60, 60, paint); |
| 2412 | canvas->restore(); |
| 2413 | canvas->translate(80, 0); |
| 2414 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2415 | } |
| 2416 | ## |
| 2417 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2418 | #SeeAlso clipRRect clipPath clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2419 | |
| 2420 | ## |
| 2421 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2422 | #Method void clipRect(const SkRect& rect, SkClipOp op) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2423 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2424 | #In Clip |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2425 | Replace Clip with the intersection or difference of Clip and rect. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2426 | Resulting Clip is Aliased; pixels are fully contained by the clip. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2427 | rect is transformed by Matrix before it is combined with Clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2428 | |
Cary Clark | a523d2d | 2017-08-30 08:58:10 -0400 | [diff] [blame] | 2429 | #Param rect Rect to combine with Clip ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2430 | #Param op Clip_Op to apply to Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2431 | |
| 2432 | #Example |
| 2433 | #Height 192 |
| 2434 | #Width 280 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2435 | void draw(SkCanvas* canvas) { |
| 2436 | SkPaint paint; |
| 2437 | for (SkClipOp op: { SkClipOp::kIntersect, SkClipOp::kDifference } ) { |
| 2438 | canvas->save(); |
| 2439 | canvas->clipRect(SkRect::MakeWH(90, 120), op, false); |
| 2440 | canvas->drawCircle(100, 100, 60, paint); |
| 2441 | canvas->restore(); |
| 2442 | canvas->translate(80, 0); |
| 2443 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2444 | } |
| 2445 | ## |
| 2446 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2447 | #SeeAlso clipRRect clipPath clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2448 | |
| 2449 | ## |
| 2450 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2451 | #Method void clipRect(const SkRect& rect, bool doAntiAlias = false) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2452 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2453 | #In Clip |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2454 | Replace Clip with the intersection of Clip and rect. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2455 | Resulting Clip is Aliased; pixels are fully contained by the clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2456 | rect is transformed by Matrix |
| 2457 | before it is combined with Clip. |
| 2458 | |
Cary Clark | a523d2d | 2017-08-30 08:58:10 -0400 | [diff] [blame] | 2459 | #Param rect Rect to combine with Clip ## |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2460 | #Param doAntiAlias true if Clip is to be Anti_Aliased ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2461 | |
| 2462 | #Example |
| 2463 | #Height 133 |
| 2464 | #Description |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2465 | A circle drawn in pieces looks uniform when drawn Aliased. |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2466 | The same circle pieces blend with pixels more than once when Anti_Aliased, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2467 | visible as a thin pair of lines through the right circle. |
| 2468 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2469 | void draw(SkCanvas* canvas) { |
| 2470 | canvas->clear(SK_ColorWHITE); |
| 2471 | SkPaint paint; |
| 2472 | paint.setAntiAlias(true); |
| 2473 | paint.setColor(0x8055aaff); |
| 2474 | SkRect clipRect = { 0, 0, 87.4f, 87.4f }; |
| 2475 | for (auto alias: { false, true } ) { |
| 2476 | canvas->save(); |
| 2477 | canvas->clipRect(clipRect, SkClipOp::kIntersect, alias); |
| 2478 | canvas->drawCircle(67, 67, 60, paint); |
| 2479 | canvas->restore(); |
| 2480 | canvas->save(); |
| 2481 | canvas->clipRect(clipRect, SkClipOp::kDifference, alias); |
| 2482 | canvas->drawCircle(67, 67, 60, paint); |
| 2483 | canvas->restore(); |
| 2484 | canvas->translate(120, 0); |
| 2485 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2486 | } |
| 2487 | ## |
| 2488 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2489 | #SeeAlso clipRRect clipPath clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2490 | |
| 2491 | ## |
| 2492 | |
| 2493 | #Method void androidFramework_setDeviceClipRestriction(const SkIRect& rect) |
| 2494 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2495 | #In Clip |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 2496 | #Line # exists for use by Android framework ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2497 | Sets the maximum clip rectangle, which can be set by clipRect, clipRRect and |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2498 | clipPath and intersect the current clip with the specified rect. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2499 | The maximum clip affects only future clipping operations; it is not retroactive. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2500 | The clip restriction is not recorded in pictures. |
| 2501 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2502 | Pass an empty rect to disable maximum clip. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2503 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2504 | #Private |
| 2505 | This is private API to be used only by Android framework. |
| 2506 | ## |
| 2507 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2508 | #Param rect maximum allowed clip in device coordinates |
Cary Clark | 579985c | 2017-07-31 11:48:27 -0400 | [diff] [blame] | 2509 | #Param ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2510 | |
| 2511 | ## |
| 2512 | |
| 2513 | #Method void clipRRect(const SkRRect& rrect, SkClipOp op, bool doAntiAlias) |
| 2514 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2515 | #In Clip |
| 2516 | #Line # combines Clip with Round_Rect ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2517 | Replace Clip with the intersection or difference of Clip and rrect, |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2518 | with an Aliased or Anti_Aliased clip edge. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2519 | rrect is transformed by Matrix |
| 2520 | before it is combined with Clip. |
| 2521 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2522 | #Param rrect Round_Rect to combine with Clip ## |
| 2523 | #Param op Clip_Op to apply to Clip ## |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2524 | #Param doAntiAlias true if Clip is to be Anti_Aliased ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2525 | |
| 2526 | #Example |
| 2527 | #Height 128 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2528 | void draw(SkCanvas* canvas) { |
| 2529 | canvas->clear(SK_ColorWHITE); |
| 2530 | SkPaint paint; |
| 2531 | paint.setAntiAlias(true); |
| 2532 | paint.setColor(0x8055aaff); |
| 2533 | SkRRect oval; |
| 2534 | oval.setOval({10, 20, 90, 100}); |
| 2535 | canvas->clipRRect(oval, SkClipOp::kIntersect, true); |
| 2536 | canvas->drawCircle(70, 100, 60, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2537 | } |
| 2538 | ## |
| 2539 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2540 | #SeeAlso clipRect clipPath clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2541 | |
| 2542 | ## |
| 2543 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2544 | #Method void clipRRect(const SkRRect& rrect, SkClipOp op) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2545 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2546 | #In Clip |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2547 | Replace Clip with the intersection or difference of Clip and rrect. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2548 | Resulting Clip is Aliased; pixels are fully contained by the clip. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2549 | rrect is transformed by Matrix before it is combined with Clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2550 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2551 | #Param rrect Round_Rect to combine with Clip ## |
| 2552 | #Param op Clip_Op to apply to Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2553 | |
| 2554 | #Example |
| 2555 | #Height 128 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2556 | void draw(SkCanvas* canvas) { |
| 2557 | SkPaint paint; |
| 2558 | paint.setColor(0x8055aaff); |
| 2559 | auto oval = SkRRect::MakeOval({10, 20, 90, 100}); |
| 2560 | canvas->clipRRect(oval, SkClipOp::kIntersect); |
| 2561 | canvas->drawCircle(70, 100, 60, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2562 | } |
| 2563 | ## |
| 2564 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2565 | #SeeAlso clipRect clipPath clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2566 | |
| 2567 | ## |
| 2568 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2569 | #Method void clipRRect(const SkRRect& rrect, bool doAntiAlias = false) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2570 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2571 | #In Clip |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2572 | Replace Clip with the intersection of Clip and rrect, |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2573 | with an Aliased or Anti_Aliased clip edge. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2574 | rrect is transformed by Matrix before it is combined with Clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2575 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2576 | #Param rrect Round_Rect to combine with Clip ## |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2577 | #Param doAntiAlias true if Clip is to be Anti_Aliased ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2578 | |
| 2579 | #Example |
| 2580 | #Height 128 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2581 | void draw(SkCanvas* canvas) { |
| 2582 | SkPaint paint; |
| 2583 | paint.setAntiAlias(true); |
| 2584 | auto oval = SkRRect::MakeRectXY({10, 20, 90, 100}, 9, 13); |
| 2585 | canvas->clipRRect(oval, true); |
| 2586 | canvas->drawCircle(70, 100, 60, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2587 | } |
| 2588 | ## |
| 2589 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2590 | #SeeAlso clipRect clipPath clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2591 | |
| 2592 | ## |
| 2593 | |
| 2594 | #Method void clipPath(const SkPath& path, SkClipOp op, bool doAntiAlias) |
| 2595 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2596 | #In Clip |
| 2597 | #Line # combines Clip with Path ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2598 | Replace Clip with the intersection or difference of Clip and path, |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2599 | with an Aliased or Anti_Aliased clip edge. Path_Fill_Type determines if path |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2600 | describes the area inside or outside its contours; and if Path_Contour overlaps |
| 2601 | itself or another Path_Contour, whether the overlaps form part of the area. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2602 | path is transformed by Matrix before it is combined with Clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2603 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2604 | #Param path Path to combine with Clip ## |
| 2605 | #Param op Clip_Op to apply to Clip ## |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2606 | #Param doAntiAlias true if Clip is to be Anti_Aliased ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2607 | |
| 2608 | #Example |
| 2609 | #Description |
| 2610 | Top figure uses SkPath::kInverseWinding_FillType and SkClipOp::kDifference; |
| 2611 | area outside clip is subtracted from circle. |
| 2612 | |
| 2613 | Bottom figure uses SkPath::kWinding_FillType and SkClipOp::kIntersect; |
| 2614 | area inside clip is intersected with circle. |
| 2615 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2616 | void draw(SkCanvas* canvas) { |
| 2617 | SkPaint paint; |
| 2618 | paint.setAntiAlias(true); |
| 2619 | SkPath path; |
| 2620 | path.addRect({20, 30, 100, 110}); |
| 2621 | path.setFillType(SkPath::kInverseWinding_FillType); |
| 2622 | canvas->save(); |
| 2623 | canvas->clipPath(path, SkClipOp::kDifference, false); |
| 2624 | canvas->drawCircle(70, 100, 60, paint); |
| 2625 | canvas->restore(); |
| 2626 | canvas->translate(100, 100); |
| 2627 | path.setFillType(SkPath::kWinding_FillType); |
| 2628 | canvas->clipPath(path, SkClipOp::kIntersect, false); |
| 2629 | canvas->drawCircle(70, 100, 60, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2630 | } |
| 2631 | ## |
| 2632 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2633 | #SeeAlso clipRect clipRRect clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2634 | |
| 2635 | ## |
| 2636 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2637 | #Method void clipPath(const SkPath& path, SkClipOp op) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2638 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2639 | #In Clip |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2640 | Replace Clip with the intersection or difference of Clip and path. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2641 | Resulting Clip is Aliased; pixels are fully contained by the clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2642 | Path_Fill_Type determines if path |
| 2643 | describes the area inside or outside its contours; and if Path_Contour overlaps |
| 2644 | itself or another Path_Contour, whether the overlaps form part of the area. |
| 2645 | path is transformed by Matrix |
| 2646 | before it is combined with Clip. |
| 2647 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2648 | #Param path Path to combine with Clip ## |
| 2649 | #Param op Clip_Op to apply to Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2650 | |
| 2651 | #Example |
| 2652 | #Description |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 2653 | Overlapping Rects form a clip. When clip Path_Fill_Type is set to |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2654 | SkPath::kWinding_FillType, the overlap is included. Set to |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2655 | SkPath::kEvenOdd_FillType, the overlap is excluded and forms a hole. |
| 2656 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2657 | void draw(SkCanvas* canvas) { |
| 2658 | SkPaint paint; |
| 2659 | paint.setAntiAlias(true); |
| 2660 | SkPath path; |
| 2661 | path.addRect({20, 15, 100, 95}); |
| 2662 | path.addRect({50, 65, 130, 135}); |
| 2663 | path.setFillType(SkPath::kWinding_FillType); |
| 2664 | canvas->save(); |
| 2665 | canvas->clipPath(path, SkClipOp::kIntersect); |
| 2666 | canvas->drawCircle(70, 85, 60, paint); |
| 2667 | canvas->restore(); |
| 2668 | canvas->translate(100, 100); |
| 2669 | path.setFillType(SkPath::kEvenOdd_FillType); |
| 2670 | canvas->clipPath(path, SkClipOp::kIntersect); |
| 2671 | canvas->drawCircle(70, 85, 60, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2672 | } |
| 2673 | ## |
| 2674 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2675 | #SeeAlso clipRect clipRRect clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2676 | |
| 2677 | ## |
| 2678 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2679 | #Method void clipPath(const SkPath& path, bool doAntiAlias = false) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2680 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2681 | #In Clip |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2682 | Replace Clip with the intersection of Clip and path. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2683 | Resulting Clip is Aliased; pixels are fully contained by the clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2684 | Path_Fill_Type determines if path |
| 2685 | describes the area inside or outside its contours; and if Path_Contour overlaps |
| 2686 | itself or another Path_Contour, whether the overlaps form part of the area. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2687 | path is transformed by Matrix before it is combined with Clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2688 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2689 | #Param path Path to combine with Clip ## |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2690 | #Param doAntiAlias true if Clip is to be Anti_Aliased ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2691 | |
| 2692 | #Example |
| 2693 | #Height 212 |
| 2694 | #Description |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2695 | Clip loops over itself covering its center twice. When clip Path_Fill_Type |
| 2696 | is set to SkPath::kWinding_FillType, the overlap is included. Set to |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2697 | SkPath::kEvenOdd_FillType, the overlap is excluded and forms a hole. |
| 2698 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2699 | void draw(SkCanvas* canvas) { |
| 2700 | SkPaint paint; |
| 2701 | paint.setAntiAlias(true); |
| 2702 | SkPath path; |
| 2703 | SkPoint poly[] = {{20, 20}, { 80, 20}, { 80, 80}, {40, 80}, |
| 2704 | {40, 40}, {100, 40}, {100, 100}, {20, 100}}; |
| 2705 | path.addPoly(poly, SK_ARRAY_COUNT(poly), true); |
| 2706 | path.setFillType(SkPath::kWinding_FillType); |
| 2707 | canvas->save(); |
| 2708 | canvas->clipPath(path, SkClipOp::kIntersect); |
| 2709 | canvas->drawCircle(50, 50, 45, paint); |
| 2710 | canvas->restore(); |
| 2711 | canvas->translate(100, 100); |
| 2712 | path.setFillType(SkPath::kEvenOdd_FillType); |
| 2713 | canvas->clipPath(path, SkClipOp::kIntersect); |
| 2714 | canvas->drawCircle(50, 50, 45, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2715 | } |
| 2716 | ## |
| 2717 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2718 | #SeeAlso clipRect clipRRect clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2719 | |
| 2720 | ## |
| 2721 | |
| 2722 | # ------------------------------------------------------------------------------ |
| 2723 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2724 | #Method void setAllowSimplifyClip(bool allow) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2725 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2726 | #In Clip |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 2727 | #Experimental testing |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2728 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2729 | Set to simplify clip stack using PathOps. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2730 | |
| 2731 | ## |
| 2732 | |
| 2733 | # ------------------------------------------------------------------------------ |
| 2734 | |
| 2735 | #Method void clipRegion(const SkRegion& deviceRgn, SkClipOp op = SkClipOp::kIntersect) |
| 2736 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2737 | #In Clip |
| 2738 | #Line # combines Clip with Region ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2739 | Replace Clip with the intersection or difference of Clip and Region deviceRgn. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2740 | Resulting Clip is Aliased; pixels are fully contained by the clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2741 | deviceRgn is unaffected by Matrix. |
| 2742 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2743 | #Param deviceRgn Region to combine with Clip ## |
| 2744 | #Param op Clip_Op to apply to Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2745 | |
| 2746 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2747 | #Description |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2748 | region is unaffected by canvas rotation; iRect is affected by canvas rotation. |
| 2749 | Both clips are Aliased; this is not noticeable on Region clip because it |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2750 | aligns to pixel boundaries. |
| 2751 | ## |
| 2752 | void draw(SkCanvas* canvas) { |
| 2753 | SkPaint paint; |
| 2754 | paint.setAntiAlias(true); |
| 2755 | SkIRect iRect = {30, 40, 120, 130 }; |
| 2756 | SkRegion region(iRect); |
| 2757 | canvas->rotate(10); |
| 2758 | canvas->save(); |
| 2759 | canvas->clipRegion(region, SkClipOp::kIntersect); |
| 2760 | canvas->drawCircle(50, 50, 45, paint); |
| 2761 | canvas->restore(); |
| 2762 | canvas->translate(100, 100); |
| 2763 | canvas->clipRect(SkRect::Make(iRect), SkClipOp::kIntersect); |
| 2764 | canvas->drawCircle(50, 50, 45, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2765 | } |
| 2766 | ## |
| 2767 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2768 | #SeeAlso clipRect clipRRect clipPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2769 | |
| 2770 | ## |
| 2771 | |
| 2772 | #Method bool quickReject(const SkRect& rect) const |
| 2773 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2774 | #In Clip |
| 2775 | #Line # returns if Rect is outside Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2776 | Return true if Rect rect, transformed by Matrix, can be quickly determined to be |
| 2777 | outside of Clip. May return false even though rect is outside of Clip. |
| 2778 | |
| 2779 | Use to check if an area to be drawn is clipped out, to skip subsequent draw calls. |
| 2780 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2781 | #Param rect Rect to compare with Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2782 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2783 | #Return true if rect, transformed by Matrix, does not intersect Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2784 | |
| 2785 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2786 | void draw(SkCanvas* canvas) { |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2787 | SkRect testRect = {30, 30, 120, 129 }; |
| 2788 | SkRect clipRect = {30, 130, 120, 230 }; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2789 | canvas->save(); |
| 2790 | canvas->clipRect(clipRect); |
| 2791 | SkDebugf("quickReject %s\n", canvas->quickReject(testRect) ? "true" : "false"); |
| 2792 | canvas->restore(); |
| 2793 | canvas->rotate(10); |
| 2794 | canvas->clipRect(clipRect); |
| 2795 | SkDebugf("quickReject %s\n", canvas->quickReject(testRect) ? "true" : "false"); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2796 | } |
| 2797 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2798 | quickReject true |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2799 | quickReject false |
| 2800 | ## |
| 2801 | ## |
| 2802 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2803 | #SeeAlso getLocalClipBounds getTotalMatrix SkBitmap::drawsNothing |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2804 | |
| 2805 | ## |
| 2806 | |
| 2807 | #Method bool quickReject(const SkPath& path) const |
| 2808 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2809 | #In Clip |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2810 | Return true if path, transformed by Matrix, can be quickly determined to be |
| 2811 | outside of Clip. May return false even though path is outside of Clip. |
| 2812 | |
| 2813 | Use to check if an area to be drawn is clipped out, to skip subsequent draw calls. |
| 2814 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2815 | #Param path Path to compare with Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2816 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2817 | #Return true if path, transformed by Matrix, does not intersect Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2818 | |
| 2819 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2820 | void draw(SkCanvas* canvas) { |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2821 | SkPoint testPoints[] = {{30, 30}, {120, 30}, {120, 129} }; |
| 2822 | SkPoint clipPoints[] = {{30, 130}, {120, 130}, {120, 230} }; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2823 | SkPath testPath, clipPath; |
| 2824 | testPath.addPoly(testPoints, SK_ARRAY_COUNT(testPoints), true); |
| 2825 | clipPath.addPoly(clipPoints, SK_ARRAY_COUNT(clipPoints), true); |
| 2826 | canvas->save(); |
| 2827 | canvas->clipPath(clipPath); |
| 2828 | SkDebugf("quickReject %s\n", canvas->quickReject(testPath) ? "true" : "false"); |
| 2829 | canvas->restore(); |
| 2830 | canvas->rotate(10); |
| 2831 | canvas->clipPath(clipPath); |
| 2832 | SkDebugf("quickReject %s\n", canvas->quickReject(testPath) ? "true" : "false"); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2833 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2834 | quickReject true |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2835 | quickReject false |
| 2836 | ## |
| 2837 | } |
| 2838 | ## |
| 2839 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2840 | #SeeAlso getLocalClipBounds getTotalMatrix SkBitmap::drawsNothing |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2841 | |
| 2842 | ## |
| 2843 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2844 | #Method SkRect getLocalClipBounds() const |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2845 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2846 | #In Clip |
| 2847 | #Line # returns Clip bounds in source coordinates ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2848 | Return bounds of Clip, transformed by inverse of Matrix. If Clip is empty, |
| 2849 | return SkRect::MakeEmpty, where all Rect sides equal zero. |
| 2850 | |
| 2851 | Rect returned is outset by one to account for partial pixel coverage if Clip |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2852 | is Anti_Aliased. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2853 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2854 | #Return bounds of Clip in local coordinates ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2855 | |
| 2856 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2857 | #Description |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2858 | Initial bounds is device bounds outset by 1 on all sides. |
| 2859 | Clipped bounds is clipPath bounds outset by 1 on all sides. |
| 2860 | Scaling the canvas by two in x and y scales the local bounds by 1/2 in x and y. |
| 2861 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2862 | SkCanvas local(256, 256); |
| 2863 | canvas = &local; |
| 2864 | SkRect bounds = canvas->getLocalClipBounds(); |
| 2865 | SkDebugf("left:%g top:%g right:%g bottom:%g\n", |
| 2866 | bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2867 | SkPoint clipPoints[] = {{30, 130}, {120, 130}, {120, 230} }; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2868 | SkPath clipPath; |
| 2869 | clipPath.addPoly(clipPoints, SK_ARRAY_COUNT(clipPoints), true); |
| 2870 | canvas->clipPath(clipPath); |
| 2871 | bounds = canvas->getLocalClipBounds(); |
| 2872 | SkDebugf("left:%g top:%g right:%g bottom:%g\n", |
| 2873 | bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom); |
| 2874 | canvas->scale(2, 2); |
| 2875 | bounds = canvas->getLocalClipBounds(); |
| 2876 | SkDebugf("left:%g top:%g right:%g bottom:%g\n", |
| 2877 | bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom); |
| 2878 | #StdOut |
| 2879 | left:-1 top:-1 right:257 bottom:257 |
| 2880 | left:29 top:129 right:121 bottom:231 |
| 2881 | left:14.5 top:64.5 right:60.5 bottom:115.5 |
| 2882 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2883 | ## |
| 2884 | |
| 2885 | # local canvas in example works around bug in fiddle ## |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 2886 | #Bug 6524 |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2887 | #SeeAlso getDeviceClipBounds getBaseLayerSize quickReject |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2888 | |
| 2889 | ## |
| 2890 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2891 | #Method bool getLocalClipBounds(SkRect* bounds) const |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2892 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2893 | #In Clip |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2894 | Return bounds of Clip, transformed by inverse of Matrix. If Clip is empty, |
| 2895 | return false, and set bounds to SkRect::MakeEmpty, where all Rect sides equal zero. |
| 2896 | |
| 2897 | bounds is outset by one to account for partial pixel coverage if Clip |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2898 | is Anti_Aliased. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2899 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2900 | #Param bounds Rect of Clip in local coordinates ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2901 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2902 | #Return true if Clip bounds is not empty ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2903 | |
| 2904 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2905 | void draw(SkCanvas* canvas) { |
| 2906 | SkCanvas local(256, 256); |
| 2907 | canvas = &local; |
| 2908 | SkRect bounds; |
| 2909 | SkDebugf("local bounds empty = %s\n", canvas->getLocalClipBounds(&bounds) |
| 2910 | ? "false" : "true"); |
| 2911 | SkPath path; |
| 2912 | canvas->clipPath(path); |
| 2913 | SkDebugf("local bounds empty = %s\n", canvas->getLocalClipBounds(&bounds) |
| 2914 | ? "false" : "true"); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2915 | } |
| 2916 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2917 | local bounds empty = false |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2918 | local bounds empty = true |
| 2919 | ## |
| 2920 | ## |
| 2921 | |
| 2922 | # local canvas in example works around bug in fiddle ## |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 2923 | #Bug 6524 |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2924 | #SeeAlso getDeviceClipBounds getBaseLayerSize quickReject |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2925 | |
| 2926 | ## |
| 2927 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2928 | #Method SkIRect getDeviceClipBounds() const |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2929 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2930 | #In Clip |
| 2931 | #Line # returns IRect bounds of Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2932 | Return IRect bounds of Clip, unaffected by Matrix. If Clip is empty, |
| 2933 | return SkRect::MakeEmpty, where all Rect sides equal zero. |
| 2934 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2935 | Unlike getLocalClipBounds, returned IRect is not outset. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2936 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2937 | #Return bounds of Clip in Device coordinates ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2938 | |
| 2939 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2940 | void draw(SkCanvas* canvas) { |
| 2941 | #Description |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2942 | Initial bounds is device bounds, not outset. |
| 2943 | Clipped bounds is clipPath bounds, not outset. |
| 2944 | Scaling the canvas by 1/2 in x and y scales the device bounds by 1/2 in x and y. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2945 | ## |
| 2946 | SkCanvas device(256, 256); |
| 2947 | canvas = &device; |
| 2948 | SkIRect bounds = canvas->getDeviceClipBounds(); |
| 2949 | SkDebugf("left:%d top:%d right:%d bottom:%d\n", |
| 2950 | bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2951 | SkPoint clipPoints[] = {{30, 130}, {120, 130}, {120, 230} }; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2952 | SkPath clipPath; |
| 2953 | clipPath.addPoly(clipPoints, SK_ARRAY_COUNT(clipPoints), true); |
| 2954 | canvas->save(); |
| 2955 | canvas->clipPath(clipPath); |
| 2956 | bounds = canvas->getDeviceClipBounds(); |
| 2957 | SkDebugf("left:%d top:%d right:%d bottom:%d\n", |
| 2958 | bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom); |
| 2959 | canvas->restore(); |
| 2960 | canvas->scale(1.f/2, 1.f/2); |
| 2961 | canvas->clipPath(clipPath); |
| 2962 | bounds = canvas->getDeviceClipBounds(); |
| 2963 | SkDebugf("left:%d top:%d right:%d bottom:%d\n", |
| 2964 | bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2965 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2966 | left:0 top:0 right:256 bottom:256 |
| 2967 | left:30 top:130 right:120 bottom:230 |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2968 | left:15 top:65 right:60 bottom:115 |
| 2969 | ## |
| 2970 | } |
| 2971 | ## |
| 2972 | |
| 2973 | #ToDo some confusion on why with an identity Matrix local and device are different ## |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2974 | #SeeAlso getLocalClipBounds getBaseLayerSize quickReject |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2975 | |
| 2976 | # device canvas in example works around bug in fiddle ## |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 2977 | #Bug 6524 |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2978 | |
| 2979 | ## |
| 2980 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2981 | #Method bool getDeviceClipBounds(SkIRect* bounds) const |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2982 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2983 | #In Clip |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2984 | Return IRect bounds of Clip, unaffected by Matrix. If Clip is empty, |
| 2985 | return false, and set bounds to SkRect::MakeEmpty, where all Rect sides equal zero. |
| 2986 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2987 | Unlike getLocalClipBounds, bounds is not outset. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2988 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2989 | #Param bounds Rect of Clip in device coordinates ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2990 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2991 | #Return true if Clip bounds is not empty ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2992 | |
| 2993 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2994 | void draw(SkCanvas* canvas) { |
| 2995 | SkIRect bounds; |
| 2996 | SkDebugf("device bounds empty = %s\n", canvas->getDeviceClipBounds(&bounds) |
| 2997 | ? "false" : "true"); |
| 2998 | SkPath path; |
| 2999 | canvas->clipPath(path); |
| 3000 | SkDebugf("device bounds empty = %s\n", canvas->getDeviceClipBounds(&bounds) |
| 3001 | ? "false" : "true"); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3002 | } |
| 3003 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3004 | device bounds empty = false |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3005 | device bounds empty = true |
| 3006 | ## |
| 3007 | ## |
| 3008 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3009 | #SeeAlso getLocalClipBounds getBaseLayerSize quickReject |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3010 | |
| 3011 | ## |
| 3012 | |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 3013 | #Subtopic Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3014 | |
| 3015 | # ------------------------------------------------------------------------------ |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3016 | #Subtopic Draw |
| 3017 | #Populate |
| 3018 | #Line # draws into Canvas ## |
| 3019 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3020 | |
| 3021 | #Method void drawColor(SkColor color, SkBlendMode mode = SkBlendMode::kSrcOver) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3022 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3023 | #Line # fills Clip with Color and Blend_Mode ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3024 | Fill Clip with Color color. |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 3025 | mode determines how ARGB is combined with destination. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3026 | |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 3027 | #Param color Unpremultiplied ARGB ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3028 | #Param mode SkBlendMode used to combine source color and destination ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3029 | |
| 3030 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3031 | canvas->drawColor(SK_ColorRED); |
| 3032 | canvas->clipRect(SkRect::MakeWH(150, 150)); |
| 3033 | canvas->drawColor(SkColorSetARGB(0x80, 0x00, 0xFF, 0x00), SkBlendMode::kPlus); |
| 3034 | canvas->clipRect(SkRect::MakeWH(75, 75)); |
| 3035 | canvas->drawColor(SkColorSetARGB(0x80, 0x00, 0x00, 0xFF), SkBlendMode::kPlus); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3036 | ## |
| 3037 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3038 | #SeeAlso clear SkBitmap::erase drawPaint |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3039 | |
| 3040 | ## |
| 3041 | |
| 3042 | # ------------------------------------------------------------------------------ |
| 3043 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3044 | #Method void clear(SkColor color) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3045 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3046 | #Line # fills Clip with Color ## |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3047 | Fill Clip with Color color using SkBlendMode::kSrc. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3048 | This has the effect of replacing all pixels contained by Clip with color. |
| 3049 | |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 3050 | #Param color Unpremultiplied ARGB ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3051 | |
| 3052 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3053 | void draw(SkCanvas* canvas) { |
| 3054 | canvas->save(); |
| 3055 | canvas->clipRect(SkRect::MakeWH(256, 128)); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3056 | canvas->clear(SkColorSetARGB(0x80, 0xFF, 0x00, 0x00)); |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3057 | canvas->restore(); |
| 3058 | canvas->save(); |
| 3059 | canvas->clipRect(SkRect::MakeWH(150, 192)); |
| 3060 | canvas->clear(SkColorSetARGB(0x80, 0x00, 0xFF, 0x00)); |
| 3061 | canvas->restore(); |
| 3062 | canvas->clipRect(SkRect::MakeWH(75, 256)); |
| 3063 | canvas->clear(SkColorSetARGB(0x80, 0x00, 0x00, 0xFF)); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3064 | } |
| 3065 | ## |
| 3066 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3067 | #SeeAlso drawColor SkBitmap::erase drawPaint |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3068 | |
| 3069 | ## |
| 3070 | |
| 3071 | # ------------------------------------------------------------------------------ |
| 3072 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3073 | #Method void discard() |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3074 | #In Utility |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3075 | #Line # makes Canvas contents undefined ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3076 | Make Canvas contents undefined. Subsequent calls that read Canvas pixels, |
| 3077 | such as drawing with SkBlendMode, return undefined results. discard() does |
| 3078 | not change Clip or Matrix. |
| 3079 | |
| 3080 | discard() may do nothing, depending on the implementation of Surface or Device |
| 3081 | that created Canvas. |
| 3082 | |
| 3083 | discard() allows optimized performance on subsequent draws by removing |
| 3084 | cached data associated with Surface or Device. |
| 3085 | It is not necessary to call discard() once done with Canvas; |
| 3086 | any cached data is deleted when owning Surface or Device is deleted. |
| 3087 | |
| 3088 | #ToDo example? not sure how to make this meaningful w/o more implementation detail ## |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3089 | #SeeAlso flush() SkSurface::prepareForExternalIO GrContext::abandonContext |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3090 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3091 | #NoExample |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3092 | ## |
| 3093 | |
| 3094 | ## |
| 3095 | |
| 3096 | # ------------------------------------------------------------------------------ |
| 3097 | |
| 3098 | #Method void drawPaint(const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3099 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3100 | #Line # fills Clip with Paint ## |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 3101 | Fill Clip with Paint paint. Paint components Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3102 | Color_Filter, Image_Filter, and Blend_Mode affect drawing; |
| 3103 | Path_Effect in paint is ignored. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3104 | |
| 3105 | # can Path_Effect in paint ever alter drawPaint? |
| 3106 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3107 | #Param paint graphics state used to fill Canvas ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3108 | |
| 3109 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3110 | void draw(SkCanvas* canvas) { |
| 3111 | SkColor colors[] = { SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE }; |
| 3112 | SkScalar pos[] = { 0, SK_Scalar1/2, SK_Scalar1 }; |
| 3113 | SkPaint paint; |
| 3114 | paint.setShader(SkGradientShader::MakeSweep(256, 256, colors, pos, SK_ARRAY_COUNT(colors))); |
| 3115 | canvas->drawPaint(paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3116 | } |
| 3117 | ## |
| 3118 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3119 | #SeeAlso clear drawColor SkBitmap::erase |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3120 | |
| 3121 | ## |
| 3122 | |
| 3123 | # ------------------------------------------------------------------------------ |
| 3124 | |
| 3125 | #Enum PointMode |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 3126 | #Line # sets drawPoints options ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3127 | |
| 3128 | #Code |
| 3129 | enum PointMode { |
| 3130 | kPoints_PointMode, |
| 3131 | kLines_PointMode, |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 3132 | kPolygon_PointMode, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3133 | }; |
| 3134 | ## |
| 3135 | |
| 3136 | Selects if an array of points are drawn as discrete points, as lines, or as |
| 3137 | an open polygon. |
| 3138 | |
| 3139 | #Const kPoints_PointMode 0 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 3140 | #Line # draw each point separately ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3141 | ## |
| 3142 | |
| 3143 | #Const kLines_PointMode 1 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 3144 | #Line # draw each pair of points as a line segment ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3145 | ## |
| 3146 | |
| 3147 | #Const kPolygon_PointMode 2 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 3148 | #Line # draw the array of points as a open polygon ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3149 | ## |
| 3150 | |
| 3151 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3152 | #Description |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3153 | The upper left corner shows three squares when drawn as points. |
| 3154 | The upper right corner shows one line; when drawn as lines, two points are required per line. |
| 3155 | The lower right corner shows two lines; when draw as polygon, no miter is drawn at the corner. |
| 3156 | The lower left corner shows two lines with a miter when path contains polygon. |
| 3157 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3158 | void draw(SkCanvas* canvas) { |
| 3159 | SkPaint paint; |
| 3160 | paint.setStyle(SkPaint::kStroke_Style); |
| 3161 | paint.setStrokeWidth(10); |
| 3162 | SkPoint points[] = {{64, 32}, {96, 96}, {32, 96}}; |
| 3163 | canvas->drawPoints(SkCanvas::kPoints_PointMode, 3, points, paint); |
| 3164 | canvas->translate(128, 0); |
| 3165 | canvas->drawPoints(SkCanvas::kLines_PointMode, 3, points, paint); |
| 3166 | canvas->translate(0, 128); |
| 3167 | canvas->drawPoints(SkCanvas::kPolygon_PointMode, 3, points, paint); |
| 3168 | SkPath path; |
| 3169 | path.addPoly(points, 3, false); |
| 3170 | canvas->translate(-128, 0); |
| 3171 | canvas->drawPath(path, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3172 | } |
| 3173 | ## |
| 3174 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3175 | #SeeAlso drawLine drawPoint drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3176 | |
| 3177 | ## |
| 3178 | |
| 3179 | # ------------------------------------------------------------------------------ |
| 3180 | |
| 3181 | #Method void drawPoints(PointMode mode, size_t count, const SkPoint pts[], const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3182 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3183 | #Line # draws array as points, lines, polygon ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3184 | Draw pts using Clip, Matrix and Paint paint. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3185 | count is the number of points; if count is less than one, has no effect. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3186 | mode may be one of: kPoints_PointMode, kLines_PointMode, or kPolygon_PointMode. |
| 3187 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3188 | If mode is kPoints_PointMode, the shape of point drawn depends on paint |
| 3189 | Paint_Stroke_Cap. If paint is set to SkPaint::kRound_Cap, each point draws a |
| 3190 | circle of diameter Paint_Stroke_Width. If paint is set to SkPaint::kSquare_Cap |
| 3191 | or SkPaint::kButt_Cap, each point draws a square of width and height |
| 3192 | Paint_Stroke_Width. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3193 | |
| 3194 | If mode is kLines_PointMode, each pair of points draws a line segment. |
| 3195 | One line is drawn for every two points; each point is used once. If count is odd, |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3196 | the final point is ignored. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3197 | |
| 3198 | If mode is kPolygon_PointMode, each adjacent pair of points draws a line segment. |
| 3199 | count minus one lines are drawn; the first and last point are used once. |
| 3200 | |
| 3201 | Each line segment respects paint Paint_Stroke_Cap and Paint_Stroke_Width. |
| 3202 | Paint_Style is ignored, as if were set to SkPaint::kStroke_Style. |
| 3203 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3204 | Always draws each element one at a time; is not affected by |
| 3205 | Paint_Stroke_Join, and unlike drawPath, does not create a mask from all points |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3206 | and lines before drawing. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3207 | |
Cary Clark | a523d2d | 2017-08-30 08:58:10 -0400 | [diff] [blame] | 3208 | #Param mode whether pts draws points or lines ## |
| 3209 | #Param count number of points in the array ## |
| 3210 | #Param pts array of points to draw ## |
| 3211 | #Param paint stroke, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3212 | |
| 3213 | #Example |
| 3214 | #Height 200 |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3215 | #Description |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3216 | #List |
| 3217 | # The first column draws points. ## |
| 3218 | # The second column draws points as lines. ## |
| 3219 | # The third column draws points as a polygon. ## |
| 3220 | # The fourth column draws points as a polygonal path. ## |
| 3221 | # The first row uses a round cap and round join. ## |
| 3222 | # The second row uses a square cap and a miter join. ## |
| 3223 | # The third row uses a butt cap and a bevel join. ## |
| 3224 | ## |
| 3225 | The transparent color makes multiple line draws visible; |
| 3226 | the path is drawn all at once. |
| 3227 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3228 | void draw(SkCanvas* canvas) { |
| 3229 | SkPaint paint; |
| 3230 | paint.setAntiAlias(true); |
| 3231 | paint.setStyle(SkPaint::kStroke_Style); |
| 3232 | paint.setStrokeWidth(10); |
| 3233 | paint.setColor(0x80349a45); |
| 3234 | const SkPoint points[] = {{32, 16}, {48, 48}, {16, 32}}; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3235 | const SkPaint::Join join[] = { SkPaint::kRound_Join, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3236 | SkPaint::kMiter_Join, |
| 3237 | SkPaint::kBevel_Join }; |
| 3238 | int joinIndex = 0; |
| 3239 | SkPath path; |
| 3240 | path.addPoly(points, 3, false); |
| 3241 | for (const auto cap : { SkPaint::kRound_Cap, SkPaint::kSquare_Cap, SkPaint::kButt_Cap } ) { |
| 3242 | paint.setStrokeCap(cap); |
| 3243 | paint.setStrokeJoin(join[joinIndex++]); |
| 3244 | for (const auto mode : { SkCanvas::kPoints_PointMode, |
| 3245 | SkCanvas::kLines_PointMode, |
| 3246 | SkCanvas::kPolygon_PointMode } ) { |
| 3247 | canvas->drawPoints(mode, 3, points, paint); |
| 3248 | canvas->translate(64, 0); |
| 3249 | } |
| 3250 | canvas->drawPath(path, paint); |
| 3251 | canvas->translate(-192, 64); |
| 3252 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3253 | } |
| 3254 | ## |
| 3255 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3256 | #SeeAlso drawLine drawPoint drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3257 | |
| 3258 | ## |
| 3259 | |
| 3260 | # ------------------------------------------------------------------------------ |
| 3261 | |
| 3262 | #Method void drawPoint(SkScalar x, SkScalar y, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3263 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3264 | #Line # draws point at (x, y) position ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3265 | Draw point at (x, y) using Clip, Matrix and Paint paint. |
| 3266 | |
| 3267 | The shape of point drawn depends on paint Paint_Stroke_Cap. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3268 | If paint is set to SkPaint::kRound_Cap, draw a circle of diameter |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3269 | Paint_Stroke_Width. If paint is set to SkPaint::kSquare_Cap or SkPaint::kButt_Cap, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3270 | draw a square of width and height Paint_Stroke_Width. |
| 3271 | Paint_Style is ignored, as if were set to SkPaint::kStroke_Style. |
| 3272 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3273 | #Param x left edge of circle or square ## |
| 3274 | #Param y top edge of circle or square ## |
| 3275 | #Param paint stroke, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3276 | |
| 3277 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3278 | void draw(SkCanvas* canvas) { |
| 3279 | SkPaint paint; |
| 3280 | paint.setAntiAlias(true); |
| 3281 | paint.setColor(0x80349a45); |
| 3282 | paint.setStyle(SkPaint::kStroke_Style); |
| 3283 | paint.setStrokeWidth(100); |
| 3284 | paint.setStrokeCap(SkPaint::kRound_Cap); |
| 3285 | canvas->scale(1, 1.2f); |
| 3286 | canvas->drawPoint(64, 96, paint); |
| 3287 | canvas->scale(.6f, .8f); |
| 3288 | paint.setColor(SK_ColorWHITE); |
| 3289 | canvas->drawPoint(106, 120, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3290 | } |
| 3291 | ## |
| 3292 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3293 | #SeeAlso drawPoints drawCircle drawRect drawLine drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3294 | |
| 3295 | ## |
| 3296 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3297 | #Method void drawPoint(SkPoint p, const SkPaint& paint) |
| 3298 | |
| 3299 | Draw point p using Clip, Matrix and Paint paint. |
| 3300 | |
| 3301 | The shape of point drawn depends on paint Paint_Stroke_Cap. |
| 3302 | If paint is set to SkPaint::kRound_Cap, draw a circle of diameter |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3303 | Paint_Stroke_Width. If paint is set to SkPaint::kSquare_Cap or SkPaint::kButt_Cap, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3304 | draw a square of width and height Paint_Stroke_Width. |
| 3305 | Paint_Style is ignored, as if were set to SkPaint::kStroke_Style. |
| 3306 | |
| 3307 | #Param p top-left edge of circle or square ## |
| 3308 | #Param paint stroke, blend, color, and so on, used to draw ## |
| 3309 | |
| 3310 | #Example |
| 3311 | void draw(SkCanvas* canvas) { |
| 3312 | SkPaint paint; |
| 3313 | paint.setAntiAlias(true); |
| 3314 | paint.setColor(0x80349a45); |
| 3315 | paint.setStyle(SkPaint::kStroke_Style); |
| 3316 | paint.setStrokeWidth(100); |
| 3317 | paint.setStrokeCap(SkPaint::kSquare_Cap); |
| 3318 | canvas->scale(1, 1.2f); |
| 3319 | canvas->drawPoint({64, 96}, paint); |
| 3320 | canvas->scale(.6f, .8f); |
| 3321 | paint.setColor(SK_ColorWHITE); |
| 3322 | canvas->drawPoint(106, 120, paint); |
| 3323 | } |
| 3324 | ## |
| 3325 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3326 | #SeeAlso drawPoints drawCircle drawRect drawLine drawPath |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3327 | |
| 3328 | ## |
| 3329 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3330 | # ------------------------------------------------------------------------------ |
| 3331 | |
| 3332 | #Method void drawLine(SkScalar x0, SkScalar y0, SkScalar x1, SkScalar y1, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3333 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3334 | #Line # draws line segment between two points ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3335 | Draws line segment from (x0, y0) to (x1, y1) using Clip, Matrix, and Paint paint. |
| 3336 | In paint: Paint_Stroke_Width describes the line thickness; |
| 3337 | Paint_Stroke_Cap draws the end rounded or square; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3338 | Paint_Style is ignored, as if were set to SkPaint::kStroke_Style. |
| 3339 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3340 | #Param x0 start of line segment on x-axis ## |
| 3341 | #Param y0 start of line segment on y-axis ## |
| 3342 | #Param x1 end of line segment on x-axis ## |
| 3343 | #Param y1 end of line segment on y-axis ## |
| 3344 | #Param paint stroke, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3345 | |
| 3346 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3347 | SkPaint paint; |
| 3348 | paint.setAntiAlias(true); |
| 3349 | paint.setColor(0xFF9a67be); |
| 3350 | paint.setStrokeWidth(20); |
| 3351 | canvas->skew(1, 0); |
| 3352 | canvas->drawLine(32, 96, 32, 160, paint); |
| 3353 | canvas->skew(-2, 0); |
| 3354 | canvas->drawLine(288, 96, 288, 160, paint); |
| 3355 | ## |
| 3356 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3357 | #SeeAlso drawPoint drawCircle drawRect drawPath |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3358 | |
| 3359 | ## |
| 3360 | |
| 3361 | #Method void drawLine(SkPoint p0, SkPoint p1, const SkPaint& paint) |
| 3362 | |
| 3363 | Draws line segment from p0 to p1 using Clip, Matrix, and Paint paint. |
| 3364 | In paint: Paint_Stroke_Width describes the line thickness; |
| 3365 | Paint_Stroke_Cap draws the end rounded or square; |
| 3366 | Paint_Style is ignored, as if were set to SkPaint::kStroke_Style. |
| 3367 | |
| 3368 | #Param p0 start of line segment ## |
| 3369 | #Param p1 end of line segment ## |
| 3370 | #Param paint stroke, blend, color, and so on, used to draw ## |
| 3371 | |
| 3372 | #Example |
| 3373 | SkPaint paint; |
| 3374 | paint.setAntiAlias(true); |
| 3375 | paint.setColor(0xFF9a67be); |
| 3376 | paint.setStrokeWidth(20); |
| 3377 | canvas->skew(1, 0); |
| 3378 | canvas->drawLine({32, 96}, {32, 160}, paint); |
| 3379 | canvas->skew(-2, 0); |
| 3380 | canvas->drawLine({288, 96}, {288, 160}, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3381 | ## |
| 3382 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3383 | #SeeAlso drawPoint drawCircle drawRect drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3384 | |
| 3385 | ## |
| 3386 | |
| 3387 | # ------------------------------------------------------------------------------ |
| 3388 | |
| 3389 | #Method void drawRect(const SkRect& rect, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3390 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3391 | #Line # draws Rect using Clip, Matrix, and Paint ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3392 | Draw Rect rect using Clip, Matrix, and Paint paint. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3393 | In paint: Paint_Style determines if rectangle is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3394 | if stroked, Paint_Stroke_Width describes the line thickness, and |
| 3395 | Paint_Stroke_Join draws the corners rounded or square. |
| 3396 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 3397 | #Param rect rectangle to draw ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3398 | #Param paint stroke or fill, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3399 | |
| 3400 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3401 | void draw(SkCanvas* canvas) { |
| 3402 | SkPoint rectPts[] = { {64, 48}, {192, 160} }; |
| 3403 | SkPaint paint; |
| 3404 | paint.setAntiAlias(true); |
| 3405 | paint.setStyle(SkPaint::kStroke_Style); |
| 3406 | paint.setStrokeWidth(20); |
| 3407 | paint.setStrokeJoin(SkPaint::kRound_Join); |
| 3408 | SkMatrix rotator; |
| 3409 | rotator.setRotate(30, 128, 128); |
| 3410 | for (auto color : { SK_ColorRED, SK_ColorBLUE, SK_ColorYELLOW, SK_ColorMAGENTA } ) { |
| 3411 | paint.setColor(color); |
| 3412 | SkRect rect; |
| 3413 | rect.set(rectPts[0], rectPts[1]); |
| 3414 | canvas->drawRect(rect, paint); |
| 3415 | rotator.mapPoints(rectPts, 2); |
| 3416 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3417 | } |
| 3418 | ## |
| 3419 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3420 | #SeeAlso drawIRect drawRRect drawRoundRect drawRegion drawPath drawLine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3421 | |
| 3422 | ## |
| 3423 | |
| 3424 | # ------------------------------------------------------------------------------ |
| 3425 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3426 | #Method void drawIRect(const SkIRect& rect, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3427 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3428 | #Line # draws IRect using Clip, Matrix, and Paint ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3429 | Draw IRect rect using Clip, Matrix, and Paint paint. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3430 | In paint: Paint_Style determines if rectangle is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3431 | if stroked, Paint_Stroke_Width describes the line thickness, and |
| 3432 | Paint_Stroke_Join draws the corners rounded or square. |
| 3433 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 3434 | #Param rect rectangle to draw ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3435 | #Param paint stroke or fill, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3436 | |
| 3437 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3438 | SkIRect rect = { 64, 48, 192, 160 }; |
| 3439 | SkPaint paint; |
| 3440 | paint.setAntiAlias(true); |
| 3441 | paint.setStyle(SkPaint::kStroke_Style); |
| 3442 | paint.setStrokeWidth(20); |
| 3443 | paint.setStrokeJoin(SkPaint::kRound_Join); |
| 3444 | for (auto color : { SK_ColorRED, SK_ColorBLUE, SK_ColorYELLOW, SK_ColorMAGENTA } ) { |
| 3445 | paint.setColor(color); |
| 3446 | canvas->drawIRect(rect, paint); |
| 3447 | canvas->rotate(30, 128, 128); |
| 3448 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3449 | ## |
| 3450 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3451 | #SeeAlso drawRect drawRRect drawRoundRect drawRegion drawPath drawLine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3452 | |
| 3453 | ## |
| 3454 | |
| 3455 | # ------------------------------------------------------------------------------ |
| 3456 | |
| 3457 | #Method void drawRegion(const SkRegion& region, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3458 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3459 | #Line # draws Region using Clip, Matrix, and Paint ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3460 | Draw Region region using Clip, Matrix, and Paint paint. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3461 | In paint: Paint_Style determines if rectangle is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3462 | if stroked, Paint_Stroke_Width describes the line thickness, and |
| 3463 | Paint_Stroke_Join draws the corners rounded or square. |
| 3464 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 3465 | #Param region region to draw ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3466 | #Param paint Paint stroke or fill, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3467 | |
| 3468 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3469 | void draw(SkCanvas* canvas) { |
| 3470 | SkRegion region; |
| 3471 | region.op( 10, 10, 50, 50, SkRegion::kUnion_Op); |
| 3472 | region.op( 10, 50, 90, 90, SkRegion::kUnion_Op); |
| 3473 | SkPaint paint; |
| 3474 | paint.setAntiAlias(true); |
| 3475 | paint.setStyle(SkPaint::kStroke_Style); |
| 3476 | paint.setStrokeWidth(20); |
| 3477 | paint.setStrokeJoin(SkPaint::kRound_Join); |
| 3478 | canvas->drawRegion(region, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3479 | } |
| 3480 | ## |
| 3481 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3482 | #SeeAlso drawRect drawIRect drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3483 | |
| 3484 | ## |
| 3485 | |
| 3486 | # ------------------------------------------------------------------------------ |
| 3487 | |
| 3488 | #Method void drawOval(const SkRect& oval, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3489 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3490 | #Line # draws Oval using Clip, Matrix, and Paint ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3491 | Draw Oval oval using Clip, Matrix, and Paint. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3492 | In paint: Paint_Style determines if Oval is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3493 | if stroked, Paint_Stroke_Width describes the line thickness. |
| 3494 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3495 | #Param oval Rect bounds of Oval ## |
| 3496 | #Param paint Paint stroke or fill, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3497 | |
| 3498 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3499 | void draw(SkCanvas* canvas) { |
| 3500 | canvas->clear(0xFF3f5f9f); |
| 3501 | SkColor kColor1 = SkColorSetARGB(0xff, 0xff, 0x7f, 0); |
| 3502 | SkColor g1Colors[] = { kColor1, SkColorSetA(kColor1, 0x20) }; |
| 3503 | SkPoint g1Points[] = { { 0, 0 }, { 0, 100 } }; |
| 3504 | SkScalar pos[] = { 0.2f, 1.0f }; |
| 3505 | SkRect bounds = SkRect::MakeWH(80, 70); |
| 3506 | SkPaint paint; |
| 3507 | paint.setAntiAlias(true); |
| 3508 | paint.setShader(SkGradientShader::MakeLinear(g1Points, g1Colors, pos, SK_ARRAY_COUNT(g1Colors), |
| 3509 | SkShader::kClamp_TileMode)); |
| 3510 | canvas->drawOval(bounds , paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3511 | } |
| 3512 | ## |
| 3513 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3514 | #SeeAlso drawCircle drawPoint drawPath drawRRect drawRoundRect |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3515 | |
| 3516 | ## |
| 3517 | |
| 3518 | # ------------------------------------------------------------------------------ |
| 3519 | |
| 3520 | #Method void drawRRect(const SkRRect& rrect, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3521 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3522 | #Line # draws Round_Rect using Clip, Matrix, and Paint ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3523 | Draw Round_Rect rrect using Clip, Matrix, and Paint paint. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3524 | In paint: Paint_Style determines if rrect is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3525 | if stroked, Paint_Stroke_Width describes the line thickness. |
| 3526 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3527 | rrect may represent a rectangle, circle, oval, uniformly rounded rectangle, or |
| 3528 | may have any combination of positive non-square radii for the four corners. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3529 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3530 | #Param rrect Round_Rect with up to eight corner radii to draw ## |
| 3531 | #Param paint Paint stroke or fill, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3532 | |
| 3533 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3534 | void draw(SkCanvas* canvas) { |
| 3535 | SkPaint paint; |
| 3536 | paint.setAntiAlias(true); |
| 3537 | SkRect outer = {30, 40, 210, 220}; |
| 3538 | SkRect radii = {30, 50, 70, 90 }; |
| 3539 | SkRRect rRect; |
| 3540 | rRect.setNinePatch(outer, radii.fLeft, radii.fTop, radii.fRight, radii.fBottom); |
| 3541 | canvas->drawRRect(rRect, paint); |
| 3542 | paint.setColor(SK_ColorWHITE); |
| 3543 | canvas->drawLine(outer.fLeft + radii.fLeft, outer.fTop, |
| 3544 | outer.fLeft + radii.fLeft, outer.fBottom, paint); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3545 | canvas->drawLine(outer.fRight - radii.fRight, outer.fTop, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3546 | outer.fRight - radii.fRight, outer.fBottom, paint); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3547 | canvas->drawLine(outer.fLeft, outer.fTop + radii.fTop, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3548 | outer.fRight, outer.fTop + radii.fTop, paint); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3549 | canvas->drawLine(outer.fLeft, outer.fBottom - radii.fBottom, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3550 | outer.fRight, outer.fBottom - radii.fBottom, paint); |
| 3551 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3552 | ## |
| 3553 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3554 | #SeeAlso drawRect drawRoundRect drawDRRect drawCircle drawOval drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3555 | |
| 3556 | ## |
| 3557 | |
| 3558 | # ------------------------------------------------------------------------------ |
| 3559 | |
| 3560 | #Method void drawDRRect(const SkRRect& outer, const SkRRect& inner, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3561 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3562 | #Line # draws double Round_Rect stroked or filled ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3563 | Draw Round_Rect outer and inner |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3564 | using Clip, Matrix, and Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3565 | outer must contain inner or the drawing is undefined. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3566 | In paint: Paint_Style determines if Round_Rect is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3567 | if stroked, Paint_Stroke_Width describes the line thickness. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3568 | If stroked and Round_Rect corner has zero length radii, Paint_Stroke_Join can |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3569 | draw corners rounded or square. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3570 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3571 | GPU-backed platforms optimize drawing when both outer and inner are |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3572 | concave and outer contains inner. These platforms may not be able to draw |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3573 | Path built with identical data as fast. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3574 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3575 | #Param outer Round_Rect outer bounds to draw ## |
| 3576 | #Param inner Round_Rect inner bounds to draw ## |
| 3577 | #Param paint Paint stroke or fill, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3578 | |
| 3579 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3580 | void draw(SkCanvas* canvas) { |
| 3581 | SkRRect outer = SkRRect::MakeRect({20, 40, 210, 200}); |
| 3582 | SkRRect inner = SkRRect::MakeOval({60, 70, 170, 160}); |
| 3583 | SkPaint paint; |
| 3584 | canvas->drawDRRect(outer, inner, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3585 | } |
| 3586 | ## |
| 3587 | |
| 3588 | #Example |
| 3589 | #Description |
| 3590 | Outer Rect has no corner radii, but stroke join is rounded. |
| 3591 | Inner Round_Rect has corner radii; outset stroke increases radii of corners. |
| 3592 | Stroke join does not affect inner Round_Rect since it has no sharp corners. |
| 3593 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3594 | void draw(SkCanvas* canvas) { |
| 3595 | SkRRect outer = SkRRect::MakeRect({20, 40, 210, 200}); |
| 3596 | SkRRect inner = SkRRect::MakeRectXY({60, 70, 170, 160}, 10, 10); |
| 3597 | SkPaint paint; |
| 3598 | paint.setAntiAlias(true); |
| 3599 | paint.setStyle(SkPaint::kStroke_Style); |
| 3600 | paint.setStrokeWidth(20); |
| 3601 | paint.setStrokeJoin(SkPaint::kRound_Join); |
| 3602 | canvas->drawDRRect(outer, inner, paint); |
| 3603 | paint.setStrokeWidth(1); |
| 3604 | paint.setColor(SK_ColorWHITE); |
| 3605 | canvas->drawDRRect(outer, inner, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3606 | } |
| 3607 | ## |
| 3608 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3609 | #SeeAlso drawRect drawRoundRect drawRRect drawCircle drawOval drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3610 | |
| 3611 | ## |
| 3612 | |
| 3613 | # ------------------------------------------------------------------------------ |
| 3614 | |
| 3615 | #Method void drawCircle(SkScalar cx, SkScalar cy, SkScalar radius, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3616 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3617 | #Line # draws Circle using Clip, Matrix, and Paint ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3618 | Draw Circle at (cx, cy) with radius using Clip, Matrix, and Paint paint. |
| 3619 | If radius is zero or less, nothing is drawn. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3620 | In paint: Paint_Style determines if Circle is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3621 | if stroked, Paint_Stroke_Width describes the line thickness. |
| 3622 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3623 | #Param cx Circle center on the x-axis ## |
| 3624 | #Param cy Circle center on the y-axis ## |
| 3625 | #Param radius half the diameter of Circle ## |
| 3626 | #Param paint Paint stroke or fill, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3627 | |
| 3628 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3629 | void draw(SkCanvas* canvas) { |
| 3630 | SkPaint paint; |
| 3631 | paint.setAntiAlias(true); |
| 3632 | canvas->drawCircle(128, 128, 90, paint); |
| 3633 | paint.setColor(SK_ColorWHITE); |
| 3634 | canvas->drawCircle(86, 86, 20, paint); |
| 3635 | canvas->drawCircle(160, 76, 20, paint); |
| 3636 | canvas->drawCircle(140, 150, 35, paint); |
| 3637 | } |
| 3638 | ## |
| 3639 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3640 | #SeeAlso drawOval drawRRect drawRoundRect drawPath drawArc drawPoint drawLine |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3641 | |
| 3642 | ## |
| 3643 | |
| 3644 | #Method void drawCircle(SkPoint center, SkScalar radius, const SkPaint& paint) |
| 3645 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 3646 | Draw Circle at center with radius using Clip, Matrix, and Paint paint. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3647 | If radius is zero or less, nothing is drawn. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3648 | In paint: Paint_Style determines if Circle is stroked or filled; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3649 | if stroked, Paint_Stroke_Width describes the line thickness. |
| 3650 | |
| 3651 | #Param center Circle center ## |
| 3652 | #Param radius half the diameter of Circle ## |
| 3653 | #Param paint Paint stroke or fill, blend, color, and so on, used to draw ## |
| 3654 | |
| 3655 | #Example |
| 3656 | void draw(SkCanvas* canvas) { |
| 3657 | SkPaint paint; |
| 3658 | paint.setAntiAlias(true); |
| 3659 | canvas->drawCircle(128, 128, 90, paint); |
| 3660 | paint.setColor(SK_ColorWHITE); |
| 3661 | canvas->drawCircle({86, 86}, 20, paint); |
| 3662 | canvas->drawCircle({160, 76}, 20, paint); |
| 3663 | canvas->drawCircle({140, 150}, 35, paint); |
| 3664 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3665 | ## |
| 3666 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3667 | #SeeAlso drawOval drawRRect drawRoundRect drawPath drawArc drawPoint drawLine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3668 | |
| 3669 | ## |
| 3670 | |
| 3671 | # ------------------------------------------------------------------------------ |
| 3672 | |
| 3673 | #Method void drawArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, |
| 3674 | bool useCenter, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3675 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3676 | #Line # draws Arc using Clip, Matrix, and Paint ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3677 | |
| 3678 | Draw Arc using Clip, Matrix, and Paint paint. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3679 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3680 | Arc is part of Oval bounded by oval, sweeping from startAngle to startAngle plus |
| 3681 | sweepAngle. startAngle and sweepAngle are in degrees. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3682 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3683 | startAngle of zero places start point at the right middle edge of oval. |
| 3684 | A positive sweepAngle places Arc end point clockwise from start point; |
| 3685 | a negative sweepAngle places Arc end point counterclockwise from start point. |
| 3686 | sweepAngle may exceed 360 degrees, a full circle. |
| 3687 | If useCenter is true, draw a wedge that includes lines from oval |
| 3688 | center to Arc end points. If useCenter is false, draw Arc between end points. |
| 3689 | |
| 3690 | If Rect oval is empty or sweepAngle is zero, nothing is drawn. |
| 3691 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3692 | #Param oval Rect bounds of Oval containing Arc to draw ## |
| 3693 | #Param startAngle angle in degrees where Arc begins ## |
| 3694 | #Param sweepAngle sweep angle in degrees; positive is clockwise ## |
| 3695 | #Param useCenter if true, include the center of the oval ## |
| 3696 | #Param paint Paint stroke or fill, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3697 | |
| 3698 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3699 | void draw(SkCanvas* canvas) { |
| 3700 | SkPaint paint; |
| 3701 | paint.setAntiAlias(true); |
| 3702 | SkRect oval = { 4, 4, 60, 60}; |
| 3703 | for (auto useCenter : { false, true } ) { |
| 3704 | for (auto style : { SkPaint::kFill_Style, SkPaint::kStroke_Style } ) { |
| 3705 | paint.setStyle(style); |
| 3706 | for (auto degrees : { 45, 90, 180, 360} ) { |
| 3707 | canvas->drawArc(oval, 0, degrees , useCenter, paint); |
| 3708 | canvas->translate(64, 0); |
| 3709 | } |
| 3710 | canvas->translate(-256, 64); |
| 3711 | } |
| 3712 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3713 | } |
| 3714 | ## |
| 3715 | |
| 3716 | #Example |
| 3717 | #Height 64 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3718 | void draw(SkCanvas* canvas) { |
| 3719 | SkPaint paint; |
| 3720 | paint.setAntiAlias(true); |
| 3721 | paint.setStyle(SkPaint::kStroke_Style); |
| 3722 | paint.setStrokeWidth(4); |
| 3723 | SkRect oval = { 4, 4, 60, 60}; |
| 3724 | float intervals[] = { 5, 5 }; |
| 3725 | paint.setPathEffect(SkDashPathEffect::Make(intervals, 2, 2.5f)); |
| 3726 | for (auto degrees : { 270, 360, 540, 720 } ) { |
| 3727 | canvas->drawArc(oval, 0, degrees, false, paint); |
| 3728 | canvas->translate(64, 0); |
| 3729 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3730 | } |
| 3731 | ## |
| 3732 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3733 | #SeeAlso SkPath::arcTo drawCircle drawOval drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3734 | |
| 3735 | ## |
| 3736 | |
| 3737 | # ------------------------------------------------------------------------------ |
| 3738 | |
| 3739 | #Method void drawRoundRect(const SkRect& rect, SkScalar rx, SkScalar ry, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3740 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3741 | #Line # draws Round_Rect using Clip, Matrix, and Paint ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3742 | Draw Round_Rect bounded by Rect rect, with corner radii (rx, ry) using Clip, |
| 3743 | Matrix, and Paint paint. |
| 3744 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3745 | In paint: Paint_Style determines if Round_Rect is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3746 | if stroked, Paint_Stroke_Width describes the line thickness. |
| 3747 | If rx or ry are less than zero, they are treated as if they are zero. |
| 3748 | If rx plus ry exceeds rect width or rect height, radii are scaled down to fit. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3749 | If rx and ry are zero, Round_Rect is drawn as Rect and if stroked is affected by |
| 3750 | Paint_Stroke_Join. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3751 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3752 | #Param rect Rect bounds of Round_Rect to draw ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 3753 | #Param rx axis length in x of oval describing rounded corners ## |
| 3754 | #Param ry axis length in y of oval describing rounded corners ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3755 | #Param paint stroke, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3756 | |
| 3757 | #Example |
| 3758 | #Description |
| 3759 | Top row has a zero radius a generates a rectangle. |
| 3760 | Second row radii sum to less than sides. |
| 3761 | Third row radii sum equals sides. |
| 3762 | Fourth row radii sum exceeds sides; radii are scaled to fit. |
| 3763 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3764 | void draw(SkCanvas* canvas) { |
| 3765 | SkVector radii[] = { {0, 20}, {10, 10}, {10, 20}, {10, 40} }; |
| 3766 | SkPaint paint; |
| 3767 | paint.setStrokeWidth(15); |
| 3768 | paint.setStrokeJoin(SkPaint::kRound_Join); |
| 3769 | paint.setAntiAlias(true); |
| 3770 | for (auto style : { SkPaint::kStroke_Style, SkPaint::kFill_Style } ) { |
| 3771 | paint.setStyle(style ); |
| 3772 | for (size_t i = 0; i < SK_ARRAY_COUNT(radii); ++i) { |
| 3773 | canvas->drawRoundRect({10, 10, 60, 40}, radii[i].fX, radii[i].fY, paint); |
| 3774 | canvas->translate(0, 60); |
| 3775 | } |
| 3776 | canvas->translate(80, -240); |
| 3777 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3778 | } |
| 3779 | ## |
| 3780 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3781 | #SeeAlso DrawRRect drawRect drawDRRect drawPath drawCircle drawOval drawPoint |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3782 | |
| 3783 | ## |
| 3784 | |
| 3785 | # ------------------------------------------------------------------------------ |
| 3786 | |
| 3787 | #Method void drawPath(const SkPath& path, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3788 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3789 | #Line # draws Path using Clip, Matrix, and Paint ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3790 | Draw Path path using Clip, Matrix, and Paint paint. |
| 3791 | Path contains an array of Path_Contour, each of which may be open or closed. |
| 3792 | |
| 3793 | In paint: Paint_Style determines if Round_Rect is stroked or filled: |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3794 | if filled, Path_Fill_Type determines whether Path_Contour describes inside or |
| 3795 | outside of fill; if stroked, Paint_Stroke_Width describes the line thickness, |
| 3796 | Paint_Stroke_Cap describes line ends, and Paint_Stroke_Join describes how |
| 3797 | corners are drawn. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3798 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3799 | #Param path Path to draw ## |
| 3800 | #Param paint stroke, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3801 | |
| 3802 | #Example |
| 3803 | #Description |
| 3804 | Top rows draw stroked path with combinations of joins and caps. The open contour |
| 3805 | is affected by caps; the closed contour is affected by joins. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3806 | Bottom row draws fill the same for open and closed contour. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3807 | First bottom column shows winding fills overlap. |
| 3808 | Second bottom column shows even odd fills exclude overlap. |
| 3809 | Third bottom column shows inverse winding fills area outside both contours. |
| 3810 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3811 | void draw(SkCanvas* canvas) { |
| 3812 | SkPath path; |
| 3813 | path.moveTo(20, 20); |
| 3814 | path.quadTo(60, 20, 60, 60); |
| 3815 | path.close(); |
| 3816 | path.moveTo(60, 20); |
| 3817 | path.quadTo(60, 60, 20, 60); |
| 3818 | SkPaint paint; |
| 3819 | paint.setStrokeWidth(10); |
| 3820 | paint.setAntiAlias(true); |
| 3821 | paint.setStyle(SkPaint::kStroke_Style); |
| 3822 | for (auto join: { SkPaint::kBevel_Join, SkPaint::kRound_Join, SkPaint::kMiter_Join } ) { |
| 3823 | paint.setStrokeJoin(join); |
| 3824 | for (auto cap: { SkPaint::kButt_Cap, SkPaint::kSquare_Cap, SkPaint::kRound_Cap } ) { |
| 3825 | paint.setStrokeCap(cap); |
| 3826 | canvas->drawPath(path, paint); |
| 3827 | canvas->translate(80, 0); |
| 3828 | } |
| 3829 | canvas->translate(-240, 60); |
| 3830 | } |
| 3831 | paint.setStyle(SkPaint::kFill_Style); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3832 | for (auto fill : { SkPath::kWinding_FillType, |
| 3833 | SkPath::kEvenOdd_FillType, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3834 | SkPath::kInverseWinding_FillType } ) { |
| 3835 | path.setFillType(fill); |
| 3836 | canvas->save(); |
| 3837 | canvas->clipRect({0, 10, 80, 70}); |
| 3838 | canvas->drawPath(path, paint); |
| 3839 | canvas->restore(); |
| 3840 | canvas->translate(80, 0); |
| 3841 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3842 | } |
| 3843 | ## |
| 3844 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3845 | #SeeAlso SkPath drawLine drawArc drawRect drawPoints |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3846 | |
| 3847 | ## |
| 3848 | |
| 3849 | # ------------------------------------------------------------------------------ |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 3850 | #Subtopic Draw_Image |
| 3851 | #Line # draws Image to Canvas ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3852 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3853 | drawImage, drawImageRect, and drawImageNine can be called with a bare pointer or |
| 3854 | a smart pointer as a convenience. The pairs of calls are otherwise identical. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3855 | |
Cary Clark | 73fa972 | 2017-08-29 17:36:51 -0400 | [diff] [blame] | 3856 | #Method void drawImage(const SkImage* image, SkScalar left, SkScalar top, const SkPaint* paint = nullptr) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3857 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3858 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3859 | #Line # draws Image at (x, y) position ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3860 | Draw Image image, with its top-left corner at (left, top), |
| 3861 | using Clip, Matrix, and optional Paint paint. |
| 3862 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3863 | If paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, Blend_Mode, |
| 3864 | and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 3865 | If paint contains Mask_Filter, generate mask from image bounds. If generated |
| 3866 | mask extends beyond image bounds, replicate image edge colors, just as Shader |
| 3867 | made from SkImage::makeShader with SkShader::kClamp_TileMode set replicates the |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3868 | image edge color when it samples outside of its bounds. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3869 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3870 | #Param image uncompressed rectangular map of pixels ## |
| 3871 | #Param left left side of image ## |
| 3872 | #Param top top side of image ## |
| 3873 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 3874 | and so on; or nullptr |
| 3875 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3876 | |
| 3877 | #Example |
| 3878 | #Height 64 |
| 3879 | #Image 4 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3880 | void draw(SkCanvas* canvas) { |
| 3881 | // sk_sp<SkImage> image; |
| 3882 | SkImage* imagePtr = image.get(); |
| 3883 | canvas->drawImage(imagePtr, 0, 0); |
| 3884 | SkPaint paint; |
| 3885 | canvas->drawImage(imagePtr, 80, 0, &paint); |
| 3886 | paint.setAlpha(0x80); |
| 3887 | canvas->drawImage(imagePtr, 160, 0, &paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3888 | } |
| 3889 | ## |
| 3890 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3891 | #SeeAlso drawBitmap drawImageLattice drawImageNine drawImageRect SkPaint::setImageFilter |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3892 | |
| 3893 | ## |
| 3894 | |
| 3895 | # ------------------------------------------------------------------------------ |
| 3896 | |
| 3897 | #Method void drawImage(const sk_sp<SkImage>& image, SkScalar left, SkScalar top, |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3898 | const SkPaint* paint = nullptr) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3899 | |
| 3900 | Draw Image image, with its top-left corner at (left, top), |
| 3901 | using Clip, Matrix, and optional Paint paint. |
| 3902 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3903 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 3904 | Blend_Mode, and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 3905 | If paint contains Mask_Filter, generate mask from image bounds. If generated |
| 3906 | mask extends beyond image bounds, replicate image edge colors, just as Shader |
| 3907 | made from SkImage::makeShader with SkShader::kClamp_TileMode set replicates the |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3908 | image edge color when it samples outside of its bounds. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3909 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3910 | #Param image uncompressed rectangular map of pixels ## |
| 3911 | #Param left left side of image ## |
| 3912 | #Param top pop side of image ## |
| 3913 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 3914 | and so on; or nullptr |
| 3915 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3916 | |
| 3917 | #Example |
| 3918 | #Height 64 |
| 3919 | #Image 4 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3920 | void draw(SkCanvas* canvas) { |
| 3921 | // sk_sp<SkImage> image; |
| 3922 | canvas->drawImage(image, 0, 0); |
| 3923 | SkPaint paint; |
| 3924 | canvas->drawImage(image, 80, 0, &paint); |
| 3925 | paint.setAlpha(0x80); |
| 3926 | canvas->drawImage(image, 160, 0, &paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3927 | } |
| 3928 | ## |
| 3929 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3930 | #SeeAlso drawBitmap drawImageLattice drawImageNine drawImageRect SkPaint::setImageFilter |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3931 | |
| 3932 | ## |
| 3933 | |
| 3934 | # ------------------------------------------------------------------------------ |
| 3935 | |
| 3936 | #Enum SrcRectConstraint |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 3937 | #Line # sets drawImageRect options ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3938 | |
| 3939 | #Code |
| 3940 | enum SrcRectConstraint { |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3941 | kStrict_SrcRectConstraint, |
| 3942 | kFast_SrcRectConstraint, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3943 | }; |
| 3944 | ## |
| 3945 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 3946 | SrcRectConstraint controls the behavior at the edge of source Rect, |
| 3947 | provided to drawImageRect, trading off speed for precision. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3948 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 3949 | Image_Filter in Paint may sample multiple pixels in the image. Source Rect |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3950 | restricts the bounds of pixels that may be read. Image_Filter may slow down if |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3951 | it cannot read outside the bounds, when sampling near the edge of source Rect. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3952 | SrcRectConstraint specifies whether an Image_Filter is allowed to read pixels |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 3953 | outside source Rect. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3954 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 3955 | #Const kStrict_SrcRectConstraint 0 |
| 3956 | #Line # sample only inside bounds; slower ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 3957 | Requires Image_Filter to respect source Rect, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3958 | sampling only inside of its bounds, possibly with a performance penalty. |
| 3959 | ## |
| 3960 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 3961 | #Const kFast_SrcRectConstraint 1 |
| 3962 | #Line # sample outside bounds; faster ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 3963 | Permits Image_Filter to sample outside of source Rect |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3964 | by half the width of Image_Filter, permitting it to run faster but with |
| 3965 | error at the image edges. |
| 3966 | ## |
| 3967 | |
| 3968 | #Example |
| 3969 | #Height 64 |
| 3970 | #Description |
| 3971 | redBorder contains a black and white checkerboard bordered by red. |
| 3972 | redBorder is drawn scaled by 16 on the left. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 3973 | The middle and right bitmaps are filtered checkerboards. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3974 | Drawing the checkerboard with kStrict_SrcRectConstraint shows only a blur of black and white. |
| 3975 | Drawing the checkerboard with kFast_SrcRectConstraint allows red to bleed in the corners. |
| 3976 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3977 | void draw(SkCanvas* canvas) { |
| 3978 | SkBitmap redBorder; |
| 3979 | redBorder.allocPixels(SkImageInfo::MakeN32Premul(4, 4)); |
| 3980 | SkCanvas checkRed(redBorder); |
| 3981 | checkRed.clear(SK_ColorRED); |
| 3982 | uint32_t checkers[][2] = { { SK_ColorBLACK, SK_ColorWHITE }, |
| 3983 | { SK_ColorWHITE, SK_ColorBLACK } }; |
| 3984 | checkRed.writePixels( |
| 3985 | SkImageInfo::MakeN32Premul(2, 2), (void*) checkers, sizeof(checkers[0]), 1, 1); |
| 3986 | canvas->scale(16, 16); |
| 3987 | canvas->drawBitmap(redBorder, 0, 0, nullptr); |
| 3988 | canvas->resetMatrix(); |
| 3989 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(redBorder); |
| 3990 | SkPaint lowPaint; |
| 3991 | lowPaint.setFilterQuality(kLow_SkFilterQuality); |
| 3992 | for (auto constraint : { SkCanvas::kStrict_SrcRectConstraint, |
| 3993 | SkCanvas::kFast_SrcRectConstraint } ) { |
| 3994 | canvas->translate(80, 0); |
| 3995 | canvas->drawImageRect(image.get(), SkRect::MakeLTRB(1, 1, 3, 3), |
| 3996 | SkRect::MakeLTRB(16, 16, 48, 48), &lowPaint, constraint); |
| 3997 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3998 | } |
| 3999 | ## |
| 4000 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4001 | #SeeAlso drawImageRect drawImage SkPaint::setImageFilter |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4002 | |
| 4003 | ## |
| 4004 | |
| 4005 | # ------------------------------------------------------------------------------ |
| 4006 | |
| 4007 | #Method void drawImageRect(const SkImage* image, const SkRect& src, const SkRect& dst, |
| 4008 | const SkPaint* paint, |
| 4009 | SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4010 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4011 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4012 | #Line # draws Image, source Rect to destination Rect ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4013 | |
| 4014 | Draw Rect src of Image image, scaled and translated to fill Rect dst. |
| 4015 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4016 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4017 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4018 | Blend_Mode, and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 4019 | If paint contains Mask_Filter, generate mask from image bounds. |
| 4020 | |
| 4021 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4022 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4023 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4024 | |
| 4025 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
| 4026 | sample within src; set to kFast_SrcRectConstraint allows sampling outside to |
| 4027 | improve performance. |
| 4028 | |
| 4029 | #Param image Image containing pixels, dimensions, and format ## |
| 4030 | #Param src source Rect of image to draw from ## |
| 4031 | #Param dst destination Rect of image to draw to ## |
| 4032 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4033 | and so on; or nullptr |
| 4034 | ## |
| 4035 | #Param constraint filter strictly within src or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4036 | |
| 4037 | #Example |
| 4038 | #Height 64 |
| 4039 | #Description |
| 4040 | The left bitmap draws with Paint default kNone_SkFilterQuality, and stays within |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4041 | its bounds; there is no bleeding with kFast_SrcRectConstraint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4042 | the middle and right bitmaps draw with kLow_SkFilterQuality; with |
| 4043 | kStrict_SrcRectConstraint, the filter remains within the checkerboard, and |
| 4044 | with kFast_SrcRectConstraint red bleeds on the edges. |
| 4045 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4046 | void draw(SkCanvas* canvas) { |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4047 | uint32_t pixels[][4] = { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4048 | { 0xFFFF0000, 0xFFFF0000, 0xFFFF0000, 0xFFFF0000 }, |
| 4049 | { 0xFFFF0000, 0xFF000000, 0xFFFFFFFF, 0xFFFF0000 }, |
| 4050 | { 0xFFFF0000, 0xFFFFFFFF, 0xFF000000, 0xFFFF0000 }, |
| 4051 | { 0xFFFF0000, 0xFFFF0000, 0xFFFF0000, 0xFFFF0000 } }; |
| 4052 | SkBitmap redBorder; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4053 | redBorder.installPixels(SkImageInfo::MakeN32Premul(4, 4), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4054 | (void*) pixels, sizeof(pixels[0])); |
| 4055 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(redBorder); |
| 4056 | SkPaint lowPaint; |
| 4057 | for (auto constraint : { |
| 4058 | SkCanvas::kFast_SrcRectConstraint, |
| 4059 | SkCanvas::kStrict_SrcRectConstraint, |
| 4060 | SkCanvas::kFast_SrcRectConstraint } ) { |
| 4061 | canvas->drawImageRect(image.get(), SkRect::MakeLTRB(1, 1, 3, 3), |
| 4062 | SkRect::MakeLTRB(16, 16, 48, 48), &lowPaint, constraint); |
| 4063 | lowPaint.setFilterQuality(kLow_SkFilterQuality); |
| 4064 | canvas->translate(80, 0); |
| 4065 | } |
| 4066 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4067 | ## |
| 4068 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4069 | #SeeAlso SrcRectConstraint drawImage drawImageLattice drawImageNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4070 | |
| 4071 | ## |
| 4072 | |
| 4073 | # ------------------------------------------------------------------------------ |
| 4074 | |
| 4075 | #Method void drawImageRect(const SkImage* image, const SkIRect& isrc, const SkRect& dst, |
| 4076 | const SkPaint* paint, SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4077 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4078 | #In Draw |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4079 | |
| 4080 | Draw IRect isrc of Image image, scaled and translated to fill Rect dst. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4081 | Note that isrc is on integer pixel boundaries; dst may include fractional |
| 4082 | boundaries. Additionally transform draw using Clip, Matrix, and optional Paint |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4083 | paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4084 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4085 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4086 | Blend_Mode, and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 4087 | If paint contains Mask_Filter, generate mask from image bounds. |
| 4088 | |
| 4089 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4090 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4091 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4092 | |
| 4093 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4094 | sample within isrc; set to kFast_SrcRectConstraint allows sampling outside to |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4095 | improve performance. |
| 4096 | |
| 4097 | #Param image Image containing pixels, dimensions, and format ## |
| 4098 | #Param isrc source IRect of image to draw from ## |
| 4099 | #Param dst destination Rect of image to draw to ## |
| 4100 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4101 | and so on; or nullptr |
| 4102 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4103 | #Param constraint filter strictly within isrc or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4104 | |
| 4105 | #Example |
| 4106 | #Image 4 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4107 | void draw(SkCanvas* canvas) { |
| 4108 | // sk_sp<SkImage> image; |
| 4109 | for (auto i : { 1, 2, 4, 8 } ) { |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4110 | canvas->drawImageRect(image.get(), SkIRect::MakeLTRB(0, 0, 100, 100), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4111 | SkRect::MakeXYWH(i * 20, i * 20, i * 20, i * 20), nullptr); |
| 4112 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4113 | } |
| 4114 | ## |
| 4115 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4116 | #SeeAlso SrcRectConstraint drawImage drawImageLattice drawImageNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4117 | |
| 4118 | ## |
| 4119 | |
| 4120 | # ------------------------------------------------------------------------------ |
| 4121 | |
| 4122 | #Method void drawImageRect(const SkImage* image, const SkRect& dst, const SkPaint* paint, |
| 4123 | SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4124 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4125 | #In Draw |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4126 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4127 | Draw Image image, scaled and translated to fill Rect dst, using Clip, Matrix, |
| 4128 | and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4129 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4130 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4131 | Blend_Mode, and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 4132 | If paint contains Mask_Filter, generate mask from image bounds. |
| 4133 | |
| 4134 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4135 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4136 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4137 | |
| 4138 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4139 | sample within image; set to kFast_SrcRectConstraint allows sampling outside to |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4140 | improve performance. |
| 4141 | |
| 4142 | #Param image Image containing pixels, dimensions, and format ## |
| 4143 | #Param dst destination Rect of image to draw to ## |
| 4144 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4145 | and so on; or nullptr |
| 4146 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4147 | #Param constraint filter strictly within image or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4148 | |
| 4149 | #Example |
| 4150 | #Image 4 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4151 | void draw(SkCanvas* canvas) { |
| 4152 | // sk_sp<SkImage> image; |
| 4153 | for (auto i : { 20, 40, 80, 160 } ) { |
| 4154 | canvas->drawImageRect(image.get(), SkRect::MakeXYWH(i, i, i, i), nullptr); |
| 4155 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4156 | } |
| 4157 | ## |
| 4158 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4159 | #SeeAlso SrcRectConstraint drawImage drawImageLattice drawImageNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4160 | |
| 4161 | ## |
| 4162 | |
| 4163 | # ------------------------------------------------------------------------------ |
| 4164 | |
| 4165 | #Method void drawImageRect(const sk_sp<SkImage>& image, const SkRect& src, const SkRect& dst, |
| 4166 | const SkPaint* paint, |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4167 | SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4168 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4169 | #In Draw |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4170 | Draw Rect src of Image image, scaled and translated to fill Rect dst. |
| 4171 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4172 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4173 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4174 | Blend_Mode, and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 4175 | If paint contains Mask_Filter, generate mask from image bounds. |
| 4176 | |
| 4177 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4178 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4179 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4180 | |
| 4181 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
| 4182 | sample within src; set to kFast_SrcRectConstraint allows sampling outside to |
| 4183 | improve performance. |
| 4184 | |
| 4185 | #Param image Image containing pixels, dimensions, and format ## |
| 4186 | #Param src source Rect of image to draw from ## |
| 4187 | #Param dst destination Rect of image to draw to ## |
| 4188 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4189 | and so on; or nullptr |
| 4190 | ## |
| 4191 | #Param constraint filter strictly within src or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4192 | |
| 4193 | #Example |
| 4194 | #Height 64 |
| 4195 | #Description |
| 4196 | Canvas scales and translates; transformation from src to dst also scales. |
| 4197 | The two matrices are concatenated to create the final transformation. |
| 4198 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4199 | void draw(SkCanvas* canvas) { |
| 4200 | uint32_t pixels[][2] = { { SK_ColorBLACK, SK_ColorWHITE }, |
| 4201 | { SK_ColorWHITE, SK_ColorBLACK } }; |
| 4202 | SkBitmap bitmap; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4203 | bitmap.installPixels(SkImageInfo::MakeN32Premul(2, 2), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4204 | (void*) pixels, sizeof(pixels[0])); |
| 4205 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(bitmap); |
| 4206 | SkPaint paint; |
| 4207 | canvas->scale(4, 4); |
| 4208 | for (auto alpha : { 50, 100, 150, 255 } ) { |
| 4209 | paint.setAlpha(alpha); |
| 4210 | canvas->drawImageRect(image, SkRect::MakeWH(2, 2), SkRect::MakeWH(8, 8), &paint); |
| 4211 | canvas->translate(8, 0); |
| 4212 | } |
| 4213 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4214 | ## |
| 4215 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4216 | #SeeAlso SrcRectConstraint drawImage drawImageLattice drawImageNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4217 | |
| 4218 | ## |
| 4219 | |
| 4220 | # ------------------------------------------------------------------------------ |
| 4221 | |
| 4222 | #Method void drawImageRect(const sk_sp<SkImage>& image, const SkIRect& isrc, const SkRect& dst, |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4223 | const SkPaint* paint, SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4224 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4225 | #In Draw |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4226 | Draw IRect isrc of Image image, scaled and translated to fill Rect dst. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4227 | isrc is on integer pixel boundaries; dst may include fractional boundaries. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4228 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4229 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4230 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4231 | Blend_Mode, and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 4232 | If paint contains Mask_Filter, generate mask from image bounds. |
| 4233 | |
| 4234 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4235 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4236 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4237 | |
| 4238 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4239 | sample within image; set to kFast_SrcRectConstraint allows sampling outside to |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4240 | improve performance. |
| 4241 | |
| 4242 | #Param image Image containing pixels, dimensions, and format ## |
| 4243 | #Param isrc source IRect of image to draw from ## |
| 4244 | #Param dst destination Rect of image to draw to ## |
| 4245 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4246 | and so on; or nullptr |
| 4247 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4248 | #Param constraint filter strictly within image or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4249 | |
| 4250 | #Example |
| 4251 | #Height 64 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4252 | void draw(SkCanvas* canvas) { |
| 4253 | uint32_t pixels[][2] = { { 0x00000000, 0x55555555}, |
| 4254 | { 0xAAAAAAAA, 0xFFFFFFFF} }; |
| 4255 | SkBitmap bitmap; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4256 | bitmap.installPixels(SkImageInfo::MakeN32Premul(2, 2), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4257 | (void*) pixels, sizeof(pixels[0])); |
| 4258 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(bitmap); |
| 4259 | SkPaint paint; |
| 4260 | canvas->scale(4, 4); |
| 4261 | for (auto color : { SK_ColorRED, SK_ColorBLUE, SK_ColorGREEN } ) { |
| 4262 | paint.setColorFilter(SkColorFilter::MakeModeFilter(color, SkBlendMode::kPlus)); |
| 4263 | canvas->drawImageRect(image, SkIRect::MakeWH(2, 2), SkRect::MakeWH(8, 8), &paint); |
| 4264 | canvas->translate(8, 0); |
| 4265 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4266 | } |
| 4267 | ## |
| 4268 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4269 | #SeeAlso SrcRectConstraint drawImage drawImageLattice drawImageNine |
| 4270 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4271 | ## |
| 4272 | |
| 4273 | # ------------------------------------------------------------------------------ |
| 4274 | |
| 4275 | #Method void drawImageRect(const sk_sp<SkImage>& image, const SkRect& dst, const SkPaint* paint, |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4276 | SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4277 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4278 | #In Draw |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4279 | Draw Image image, scaled and translated to fill Rect dst, |
| 4280 | using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4281 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4282 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4283 | Blend_Mode, and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 4284 | If paint contains Mask_Filter, generate mask from image bounds. |
| 4285 | |
| 4286 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4287 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4288 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4289 | |
| 4290 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4291 | sample within image; set to kFast_SrcRectConstraint allows sampling outside to |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4292 | improve performance. |
| 4293 | |
| 4294 | #Param image Image containing pixels, dimensions, and format ## |
| 4295 | #Param dst destination Rect of image to draw to ## |
| 4296 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4297 | and so on; or nullptr |
| 4298 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4299 | #Param constraint filter strictly within image or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4300 | |
| 4301 | #Example |
| 4302 | #Height 64 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4303 | void draw(SkCanvas* canvas) { |
| 4304 | uint32_t pixels[][2] = { { 0x00000000, 0x55550000}, |
| 4305 | { 0xAAAA0000, 0xFFFF0000} }; |
| 4306 | SkBitmap bitmap; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4307 | bitmap.installPixels(SkImageInfo::MakeN32Premul(2, 2), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4308 | (void*) pixels, sizeof(pixels[0])); |
| 4309 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(bitmap); |
| 4310 | SkPaint paint; |
| 4311 | canvas->scale(4, 4); |
| 4312 | for (auto color : { SK_ColorRED, SK_ColorBLUE, SK_ColorGREEN } ) { |
| 4313 | paint.setColorFilter(SkColorFilter::MakeModeFilter(color, SkBlendMode::kPlus)); |
| 4314 | canvas->drawImageRect(image, SkRect::MakeWH(8, 8), &paint); |
| 4315 | canvas->translate(8, 0); |
| 4316 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4317 | } |
| 4318 | ## |
| 4319 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4320 | #SeeAlso SrcRectConstraint drawImage drawImageLattice drawImageNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4321 | |
| 4322 | ## |
| 4323 | |
| 4324 | # ------------------------------------------------------------------------------ |
| 4325 | |
| 4326 | #Method void drawImageNine(const SkImage* image, const SkIRect& center, const SkRect& dst, |
| 4327 | const SkPaint* paint = nullptr) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4328 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4329 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4330 | #Line # draws Nine_Patch Image ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4331 | |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 4332 | Draw Image image stretched proportionally to fit into Rect dst. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4333 | IRect center divides the image into nine sections: four sides, four corners, and |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4334 | the center. Corners are unmodified or scaled down proportionately if their sides |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4335 | are larger than dst; center and four sides are scaled to fit remaining space, if any. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4336 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4337 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
| 4338 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4339 | #paint_as_used_by_draw_lattice_or_draw_nine(image)# |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4340 | |
| 4341 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4342 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4343 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4344 | |
| 4345 | #Param image Image containing pixels, dimensions, and format ## |
| 4346 | #Param center IRect edge of image corners and sides ## |
| 4347 | #Param dst destination Rect of image to draw to ## |
| 4348 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4349 | and so on; or nullptr |
| 4350 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4351 | |
| 4352 | #Example |
| 4353 | #Height 128 |
| 4354 | #Description |
| 4355 | The leftmost image is smaller than center; only corners are drawn, all scaled to fit. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4356 | The second image equals the size of center; only corners are drawn without scaling. |
| 4357 | The remaining images are larger than center. All corners draw without scaling. |
| 4358 | The sides and center are scaled if needed to take up the remaining space. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4359 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4360 | void draw(SkCanvas* canvas) { |
| 4361 | SkIRect center = { 20, 10, 50, 40 }; |
| 4362 | SkBitmap bitmap; |
| 4363 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(60, 60)); |
| 4364 | SkCanvas bitCanvas(bitmap); |
| 4365 | SkPaint paint; |
| 4366 | SkColor gray = 0xFF000000; |
| 4367 | int left = 0; |
| 4368 | for (auto right: { center.fLeft, center.fRight, bitmap.width() } ) { |
| 4369 | int top = 0; |
| 4370 | for (auto bottom: { center.fTop, center.fBottom, bitmap.height() } ) { |
| 4371 | paint.setColor(gray); |
| 4372 | bitCanvas.drawIRect(SkIRect::MakeLTRB(left, top, right, bottom), paint); |
| 4373 | gray += 0x001f1f1f; |
| 4374 | top = bottom; |
| 4375 | } |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4376 | left = right; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4377 | } |
| 4378 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(bitmap); |
| 4379 | SkImage* imagePtr = image.get(); |
| 4380 | for (auto dest: { 20, 30, 40, 60, 90 } ) { |
| 4381 | canvas->drawImageNine(imagePtr, center, SkRect::MakeWH(dest, dest), nullptr); |
| 4382 | canvas->translate(dest + 4, 0); |
| 4383 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4384 | } |
| 4385 | ## |
| 4386 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4387 | #SeeAlso drawImage drawBitmapNine drawImageLattice drawImageRect |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4388 | |
| 4389 | ## |
| 4390 | |
| 4391 | # ------------------------------------------------------------------------------ |
| 4392 | |
| 4393 | #Method void drawImageNine(const sk_sp<SkImage>& image, const SkIRect& center, const SkRect& dst, |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4394 | const SkPaint* paint = nullptr) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4395 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4396 | #In Draw |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 4397 | Draw Image image stretched proportionally to fit into Rect dst. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4398 | IRect center divides the image into nine sections: four sides, four corners, and |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4399 | the center. Corners are not scaled, or scaled down proportionately if their sides |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4400 | are larger than dst; center and four sides are scaled to fit remaining space, if any. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4401 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4402 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
| 4403 | |
| 4404 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4405 | Blend_Mode, and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 4406 | If paint contains Mask_Filter, generate mask from image bounds. |
| 4407 | |
| 4408 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4409 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4410 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4411 | |
| 4412 | #Param image Image containing pixels, dimensions, and format ## |
| 4413 | #Param center IRect edge of image corners and sides ## |
| 4414 | #Param dst destination Rect of image to draw to ## |
| 4415 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4416 | and so on; or nullptr |
| 4417 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4418 | |
| 4419 | #Example |
| 4420 | #Height 128 |
| 4421 | #Description |
| 4422 | The two leftmost images has four corners and sides to the left and right of center. |
| 4423 | The leftmost image scales the width of corners proportionately to fit. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4424 | The third and fourth image corners are not scaled; the sides and center are scaled to |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4425 | fill the remaining space. |
| 4426 | The rightmost image has four corners scaled vertically to fit, and uses sides above |
| 4427 | and below center to fill the remaining space. |
| 4428 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4429 | void draw(SkCanvas* canvas) { |
| 4430 | SkIRect center = { 20, 10, 50, 40 }; |
| 4431 | SkBitmap bitmap; |
| 4432 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(60, 60)); |
| 4433 | SkCanvas bitCanvas(bitmap); |
| 4434 | SkPaint paint; |
| 4435 | SkColor gray = 0xFF000000; |
| 4436 | int left = 0; |
| 4437 | for (auto right: { center.fLeft, center.fRight, bitmap.width() } ) { |
| 4438 | int top = 0; |
| 4439 | for (auto bottom: { center.fTop, center.fBottom, bitmap.height() } ) { |
| 4440 | paint.setColor(gray); |
| 4441 | bitCanvas.drawIRect(SkIRect::MakeLTRB(left, top, right, bottom), paint); |
| 4442 | gray += 0x001f1f1f; |
| 4443 | top = bottom; |
| 4444 | } |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4445 | left = right; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4446 | } |
| 4447 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(bitmap); |
| 4448 | for (auto dest: { 20, 30, 40, 60, 90 } ) { |
| 4449 | canvas->drawImageNine(image, center, SkRect::MakeWH(dest, 110 - dest), nullptr); |
| 4450 | canvas->translate(dest + 4, 0); |
| 4451 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4452 | } |
| 4453 | ## |
| 4454 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4455 | #SeeAlso drawImage drawBitmapNine drawImageLattice drawImageRect |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4456 | |
| 4457 | ## |
| 4458 | |
| 4459 | # ------------------------------------------------------------------------------ |
| 4460 | |
| 4461 | #Method void drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top, |
Cary Clark | 73fa972 | 2017-08-29 17:36:51 -0400 | [diff] [blame] | 4462 | const SkPaint* paint = nullptr) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4463 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4464 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4465 | #Line # draws Bitmap at (x, y) position ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4466 | |
| 4467 | Draw Bitmap bitmap, with its top-left corner at (left, top), |
| 4468 | using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4469 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 4470 | If Paint paint is not nullptr, apply Color_Filter, Color_Alpha, Image_Filter, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4471 | Blend_Mode, and Draw_Looper. If bitmap is kAlpha_8_SkColorType, apply Shader. |
| 4472 | If paint contains Mask_Filter, generate mask from bitmap bounds. |
| 4473 | |
| 4474 | If generated mask extends beyond bitmap bounds, replicate bitmap edge colors, |
| 4475 | just as Shader made from SkShader::MakeBitmapShader with |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4476 | SkShader::kClamp_TileMode set replicates the bitmap edge color when it samples |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4477 | outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4478 | |
| 4479 | #Param bitmap Bitmap containing pixels, dimensions, and format ## |
| 4480 | #Param left left side of bitmap ## |
| 4481 | #Param top top side of bitmap ## |
| 4482 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4483 | and so on; or nullptr |
| 4484 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4485 | |
| 4486 | #Example |
| 4487 | #Height 64 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4488 | void draw(SkCanvas* canvas) { |
| 4489 | uint8_t pixels[][8] = { { 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00}, |
| 4490 | { 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00}, |
| 4491 | { 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00}, |
| 4492 | { 0xFF, 0xFF, 0x00, 0xFF, 0xFF, 0x00, 0xFF, 0xFF}, |
| 4493 | { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, |
| 4494 | { 0x00, 0x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, 0x00}, |
| 4495 | { 0x00, 0xFF, 0x00, 0xFF, 0xFF, 0x00, 0xFF, 0x00}, |
| 4496 | { 0xFF, 0x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, 0xFF} }; |
| 4497 | SkBitmap bitmap; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4498 | bitmap.installPixels(SkImageInfo::MakeA8(8, 8), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4499 | (void*) pixels, sizeof(pixels[0])); |
| 4500 | SkPaint paint; |
| 4501 | canvas->scale(4, 4); |
| 4502 | for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xFF007F00} ) { |
| 4503 | paint.setColor(color); |
| 4504 | canvas->drawBitmap(bitmap, 0, 0, &paint); |
| 4505 | canvas->translate(12, 0); |
| 4506 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4507 | } |
| 4508 | ## |
| 4509 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4510 | #SeeAlso drawImage drawBitmapLattice drawBitmapNine drawBitmapRect SkBitmap::readPixels SkBitmap::writePixels |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4511 | |
| 4512 | ## |
| 4513 | |
| 4514 | # ------------------------------------------------------------------------------ |
| 4515 | |
| 4516 | #Method void drawBitmapRect(const SkBitmap& bitmap, const SkRect& src, const SkRect& dst, |
| 4517 | const SkPaint* paint, SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4518 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4519 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4520 | #Line # draws Bitmap, source Rect to destination Rect ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4521 | |
| 4522 | Draw Rect src of Bitmap bitmap, scaled and translated to fill Rect dst. |
| 4523 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4524 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4525 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4526 | Blend_Mode, and Draw_Looper. If bitmap is kAlpha_8_SkColorType, apply Shader. |
| 4527 | If paint contains Mask_Filter, generate mask from bitmap bounds. |
| 4528 | |
| 4529 | If generated mask extends beyond bitmap bounds, replicate bitmap edge colors, |
| 4530 | just as Shader made from SkShader::MakeBitmapShader with |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4531 | SkShader::kClamp_TileMode set replicates the bitmap edge color when it samples |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4532 | outside of its bounds. |
| 4533 | |
| 4534 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
| 4535 | sample within src; set to kFast_SrcRectConstraint allows sampling outside to |
| 4536 | improve performance. |
| 4537 | |
| 4538 | #Param bitmap Bitmap containing pixels, dimensions, and format ## |
| 4539 | #Param src source Rect of image to draw from ## |
| 4540 | #Param dst destination Rect of image to draw to ## |
| 4541 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4542 | and so on; or nullptr |
| 4543 | ## |
| 4544 | #Param constraint filter strictly within src or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4545 | |
| 4546 | #Example |
| 4547 | #Height 64 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4548 | void draw(SkCanvas* canvas) { |
| 4549 | uint8_t pixels[][8] = { { 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00}, |
| 4550 | { 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00}, |
| 4551 | { 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00}, |
| 4552 | { 0xFF, 0xFF, 0x00, 0xFF, 0xFF, 0x00, 0xFF, 0xFF}, |
| 4553 | { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, |
| 4554 | { 0x00, 0x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, 0x00}, |
| 4555 | { 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00}, |
| 4556 | { 0x00, 0x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, 0x00} }; |
| 4557 | SkBitmap bitmap; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4558 | bitmap.installPixels(SkImageInfo::MakeA8(8, 8), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4559 | (void*) pixels, sizeof(pixels[0])); |
| 4560 | SkPaint paint; |
Cary Clark | 681287e | 2018-03-16 11:34:15 -0400 | [diff] [blame] | 4561 | paint.setMaskFilter(SkMaskFilter::MakeBlur(kSolid_SkBlurStyle, 6)); |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4562 | for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xFF007F00} ) { |
| 4563 | paint.setColor(color); |
| 4564 | canvas->drawBitmapRect(bitmap, SkRect::MakeWH(8, 8), SkRect::MakeWH(32, 32), &paint); |
| 4565 | canvas->translate(48, 0); |
| 4566 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4567 | } |
| 4568 | ## |
| 4569 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4570 | #SeeAlso drawImageRect drawBitmap drawBitmapLattice drawBitmapNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4571 | |
| 4572 | ## |
| 4573 | |
| 4574 | # ------------------------------------------------------------------------------ |
| 4575 | |
| 4576 | #Method void drawBitmapRect(const SkBitmap& bitmap, const SkIRect& isrc, const SkRect& dst, |
| 4577 | const SkPaint* paint, SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4578 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4579 | #In Draw |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4580 | Draw IRect isrc of Bitmap bitmap, scaled and translated to fill Rect dst. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4581 | isrc is on integer pixel boundaries; dst may include fractional boundaries. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4582 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4583 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4584 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4585 | Blend_Mode, and Draw_Looper. If bitmap is kAlpha_8_SkColorType, apply Shader. |
| 4586 | If paint contains Mask_Filter, generate mask from bitmap bounds. |
| 4587 | |
| 4588 | If generated mask extends beyond bitmap bounds, replicate bitmap edge colors, |
| 4589 | just as Shader made from SkShader::MakeBitmapShader with |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4590 | SkShader::kClamp_TileMode set replicates the bitmap edge color when it samples |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4591 | outside of its bounds. |
| 4592 | |
| 4593 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4594 | sample within isrc; set to kFast_SrcRectConstraint allows sampling outside to |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4595 | improve performance. |
| 4596 | |
| 4597 | #Param bitmap Bitmap containing pixels, dimensions, and format ## |
| 4598 | #Param isrc source IRect of image to draw from ## |
| 4599 | #Param dst destination Rect of image to draw to ## |
| 4600 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4601 | and so on; or nullptr |
| 4602 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4603 | #Param constraint sample strictly within isrc, or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4604 | |
| 4605 | #Example |
| 4606 | #Height 64 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4607 | void draw(SkCanvas* canvas) { |
| 4608 | uint8_t pixels[][8] = { { 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00}, |
| 4609 | { 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00}, |
| 4610 | { 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0x00, 0xFF}, |
| 4611 | { 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0x00, 0xFF}, |
| 4612 | { 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0xFF}, |
| 4613 | { 0xFF, 0x00, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF}, |
| 4614 | { 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00}, |
| 4615 | { 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00} }; |
| 4616 | SkBitmap bitmap; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4617 | bitmap.installPixels(SkImageInfo::MakeA8(8, 8), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4618 | (void*) pixels, sizeof(pixels[0])); |
| 4619 | SkPaint paint; |
| 4620 | paint.setFilterQuality(kHigh_SkFilterQuality); |
| 4621 | for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xFF007F00, 0xFF7f007f} ) { |
| 4622 | paint.setColor(color); |
| 4623 | canvas->drawBitmapRect(bitmap, SkIRect::MakeWH(8, 8), SkRect::MakeWH(32, 32), &paint); |
| 4624 | canvas->translate(48.25f, 0); |
| 4625 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4626 | } |
| 4627 | ## |
| 4628 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4629 | #SeeAlso drawImageRect drawBitmap drawBitmapLattice drawBitmapNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4630 | |
| 4631 | ## |
| 4632 | |
| 4633 | # ------------------------------------------------------------------------------ |
| 4634 | |
| 4635 | #Method void drawBitmapRect(const SkBitmap& bitmap, const SkRect& dst, const SkPaint* paint, |
| 4636 | SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4637 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4638 | #In Draw |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4639 | Draw Bitmap bitmap, scaled and translated to fill Rect dst. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4640 | bitmap bounds is on integer pixel boundaries; dst may include fractional boundaries. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4641 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4642 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4643 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4644 | Blend_Mode, and Draw_Looper. If bitmap is kAlpha_8_SkColorType, apply Shader. |
| 4645 | If paint contains Mask_Filter, generate mask from bitmap bounds. |
| 4646 | |
| 4647 | If generated mask extends beyond bitmap bounds, replicate bitmap edge colors, |
| 4648 | just as Shader made from SkShader::MakeBitmapShader with |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4649 | SkShader::kClamp_TileMode set replicates the bitmap edge color when it samples |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4650 | outside of its bounds. |
| 4651 | |
| 4652 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4653 | sample within bitmap; set to kFast_SrcRectConstraint allows sampling outside to |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4654 | improve performance. |
| 4655 | |
| 4656 | #Param bitmap Bitmap containing pixels, dimensions, and format ## |
| 4657 | #Param dst destination Rect of image to draw to ## |
| 4658 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4659 | and so on; or nullptr |
| 4660 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4661 | #Param constraint filter strictly within bitmap or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4662 | |
| 4663 | #Example |
| 4664 | #Height 64 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4665 | void draw(SkCanvas* canvas) { |
| 4666 | uint32_t pixels[][2] = { { 0x00000000, 0x55550000}, |
| 4667 | { 0xAAAA0000, 0xFFFF0000} }; |
| 4668 | SkBitmap bitmap; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4669 | bitmap.installPixels(SkImageInfo::MakeN32Premul(2, 2), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4670 | (void*) pixels, sizeof(pixels[0])); |
| 4671 | SkPaint paint; |
| 4672 | canvas->scale(4, 4); |
| 4673 | for (auto color : { SK_ColorRED, SK_ColorBLUE, SK_ColorGREEN } ) { |
| 4674 | paint.setColorFilter(SkColorFilter::MakeModeFilter(color, SkBlendMode::kPlus)); |
| 4675 | canvas->drawBitmapRect(bitmap, SkRect::MakeWH(8, 8), &paint); |
| 4676 | canvas->translate(8, 0); |
| 4677 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4678 | } |
| 4679 | ## |
| 4680 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4681 | #SeeAlso drawImageRect drawBitmap drawBitmapLattice drawBitmapNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4682 | |
| 4683 | ## |
| 4684 | |
| 4685 | # ------------------------------------------------------------------------------ |
| 4686 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4687 | #PhraseDef paint_as_used_by_draw_lattice_or_draw_nine(bitmap_or_image) |
| 4688 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4689 | Blend_Mode, and Draw_Looper. If #bitmap_or_image# is kAlpha_8_SkColorType, apply Shader. |
| 4690 | If paint contains Mask_Filter, generate mask from #bitmap_or_image# bounds. If paint |
| 4691 | Filter_Quality set to kNone_SkFilterQuality, disable pixel filtering. For all |
| 4692 | other values of paint Filter_Quality, use kLow_SkFilterQuality to filter pixels. |
Brian Salomon | 969be1c | 2018-05-21 14:37:49 -0400 | [diff] [blame] | 4693 | Any SkMaskFilter on the paint is ignored as is the paint's antialiasing state. |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4694 | ## |
| 4695 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4696 | #Method void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, const SkRect& dst, |
Cary Clark | 73fa972 | 2017-08-29 17:36:51 -0400 | [diff] [blame] | 4697 | const SkPaint* paint = nullptr) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4698 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4699 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4700 | #Line # draws Nine_Patch Bitmap ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4701 | |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 4702 | Draw Bitmap bitmap stretched proportionally to fit into Rect dst. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4703 | IRect center divides the bitmap into nine sections: four sides, four corners, |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4704 | and the center. Corners are not scaled, or scaled down proportionately if their |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4705 | sides are larger than dst; center and four sides are scaled to fit remaining |
| 4706 | space, if any. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4707 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4708 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
| 4709 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4710 | #paint_as_used_by_draw_lattice_or_draw_nine(bitmap)# |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4711 | |
| 4712 | If generated mask extends beyond bitmap bounds, replicate bitmap edge colors, |
| 4713 | just as Shader made from SkShader::MakeBitmapShader with |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4714 | SkShader::kClamp_TileMode set replicates the bitmap edge color when it samples |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4715 | outside of its bounds. |
| 4716 | |
| 4717 | #Param bitmap Bitmap containing pixels, dimensions, and format ## |
| 4718 | #Param center IRect edge of image corners and sides ## |
| 4719 | #Param dst destination Rect of image to draw to ## |
| 4720 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4721 | and so on; or nullptr |
| 4722 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4723 | |
| 4724 | #Example |
| 4725 | #Height 128 |
| 4726 | #Description |
| 4727 | The two leftmost bitmap draws has four corners and sides to the left and right of center. |
| 4728 | The leftmost bitmap draw scales the width of corners proportionately to fit. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4729 | The third and fourth draw corners are not scaled; the sides and center are scaled to |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4730 | fill the remaining space. |
| 4731 | The rightmost bitmap draw has four corners scaled vertically to fit, and uses sides above |
| 4732 | and below center to fill the remaining space. |
| 4733 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4734 | void draw(SkCanvas* canvas) { |
| 4735 | SkIRect center = { 20, 10, 50, 40 }; |
| 4736 | SkBitmap bitmap; |
| 4737 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(60, 60)); |
| 4738 | SkCanvas bitCanvas(bitmap); |
| 4739 | SkPaint paint; |
| 4740 | SkColor gray = 0xFF000000; |
| 4741 | int left = 0; |
| 4742 | for (auto right: { center.fLeft, center.fRight, bitmap.width() } ) { |
| 4743 | int top = 0; |
| 4744 | for (auto bottom: { center.fTop, center.fBottom, bitmap.height() } ) { |
| 4745 | paint.setColor(gray); |
| 4746 | bitCanvas.drawIRect(SkIRect::MakeLTRB(left, top, right, bottom), paint); |
| 4747 | gray += 0x001f1f1f; |
| 4748 | top = bottom; |
| 4749 | } |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4750 | left = right; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4751 | } |
| 4752 | for (auto dest: { 20, 30, 40, 60, 90 } ) { |
| 4753 | canvas->drawBitmapNine(bitmap, center, SkRect::MakeWH(dest, 110 - dest), nullptr); |
| 4754 | canvas->translate(dest + 4, 0); |
| 4755 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4756 | } |
| 4757 | ## |
| 4758 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4759 | #SeeAlso drawImageNine drawBitmap drawBitmapLattice drawBitmapRect |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4760 | |
| 4761 | ## |
| 4762 | |
| 4763 | # ------------------------------------------------------------------------------ |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4764 | #Subtopic Lattice |
| 4765 | #Line # divides Bitmap or Image into a rectangular grid ## |
| 4766 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4767 | #Struct Lattice |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 4768 | #Line # divides Bitmap or Image into a rectangular grid ## |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4769 | |
| 4770 | Lattice divides Bitmap or Image into a rectangular grid. |
| 4771 | Grid entries on even columns and even rows are fixed; these entries are |
| 4772 | always drawn at their original size if the destination is large enough. |
| 4773 | If the destination side is too small to hold the fixed entries, all fixed |
| 4774 | entries are proportionately scaled down to fit. |
| 4775 | The grid entries not on even columns and rows are scaled to fit the |
| 4776 | remaining space, if any. |
| 4777 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4778 | #Code |
| 4779 | struct Lattice { |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4780 | enum RectType ... |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4781 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4782 | const int* fXDivs; |
| 4783 | const int* fYDivs; |
| 4784 | const RectType* fRectTypes; |
| 4785 | int fXCount; |
| 4786 | int fYCount; |
| 4787 | const SkIRect* fBounds; |
| 4788 | const SkColor* fColors; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4789 | }; |
| 4790 | ## |
| 4791 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4792 | #Subtopic Overview |
| 4793 | #Populate |
| 4794 | ## |
| 4795 | |
| 4796 | #Subtopic Constant |
| 4797 | #Populate |
| 4798 | ## |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 4799 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4800 | #Enum RectType |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4801 | #Line # optional setting per rectangular grid entry ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4802 | #Code |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4803 | enum RectType : uint8_t { |
| 4804 | kDefault = 0, |
| 4805 | kTransparent, |
| 4806 | kFixedColor, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4807 | }; |
| 4808 | ## |
| 4809 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4810 | Optional setting per rectangular grid entry to make it transparent, |
| 4811 | or to fill the grid entry with a color. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4812 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4813 | #Const kDefault 0 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4814 | #Line # draws Bitmap into lattice rectangle ## |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4815 | ## |
| 4816 | |
| 4817 | #Const kTransparent 1 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4818 | #Line # skips lattice rectangle by making it transparent ## |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4819 | ## |
| 4820 | |
| 4821 | #Const kFixedColor 2 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4822 | #Line # draws one of fColors into lattice rectangle ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4823 | ## |
| 4824 | ## |
| 4825 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4826 | #Subtopic Member |
| 4827 | #Populate |
| 4828 | ## |
| 4829 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4830 | #Member const int* fXDivs |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4831 | #Line # x-coordinates dividing bitmap ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4832 | Array of x-coordinates that divide the bitmap vertically. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4833 | Array entries must be unique, increasing, greater than or equal to |
| 4834 | fBounds left edge, and less than fBounds right edge. |
| 4835 | Set the first element to fBounds left to collapse the left column of |
| 4836 | fixed grid entries. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4837 | ## |
| 4838 | |
| 4839 | #Member const int* fYDivs |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4840 | #Line # y-coordinates dividing bitmap ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4841 | Array of y-coordinates that divide the bitmap horizontally. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4842 | Array entries must be unique, increasing, greater than or equal to |
| 4843 | fBounds top edge, and less than fBounds bottom edge. |
| 4844 | Set the first element to fBounds top to collapse the top row of fixed |
| 4845 | grid entries. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4846 | ## |
| 4847 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4848 | #Member const RectType* fRectTypes |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4849 | #Line # array of fill types ## |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4850 | Optional array of fill types, one per rectangular grid entry: |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4851 | array length must be |
| 4852 | #Formula |
| 4853 | (fXCount + 1) * (fYCount + 1) |
| 4854 | ## |
| 4855 | . |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 4856 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4857 | Each RectType is one of: kDefault, kTransparent, kFixedColor. |
| 4858 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4859 | Array entries correspond to the rectangular grid entries, ascending |
| 4860 | left to right and then top to bottom. |
| 4861 | ## |
| 4862 | |
| 4863 | #Member int fXCount |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4864 | #Line # number of x-coordinates ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4865 | Number of entries in fXDivs array; one less than the number of |
| 4866 | horizontal divisions. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4867 | ## |
| 4868 | |
| 4869 | #Member int fYCount |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4870 | #Line # number of y-coordinates ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4871 | Number of entries in fYDivs array; one less than the number of vertical |
| 4872 | divisions. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4873 | ## |
| 4874 | |
| 4875 | #Member const SkIRect* fBounds |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4876 | #Line # source bounds to draw from ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4877 | Optional subset IRect source to draw from. |
| 4878 | If nullptr, source bounds is dimensions of Bitmap or Image. |
| 4879 | ## |
| 4880 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4881 | #Member const SkColor* fColors |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4882 | #Line # array of colors ## |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4883 | Optional array of colors, one per rectangular grid entry. |
| 4884 | Array length must be |
| 4885 | #Formula |
| 4886 | (fXCount + 1) * (fYCount + 1) |
| 4887 | ## |
| 4888 | . |
| 4889 | |
| 4890 | Array entries correspond to the rectangular grid entries, ascending |
| 4891 | left to right, then top to bottom. |
| 4892 | ## |
| 4893 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4894 | #Struct Lattice ## |
| 4895 | |
| 4896 | #Method void drawBitmapLattice(const SkBitmap& bitmap, const Lattice& lattice, const SkRect& dst, |
| 4897 | const SkPaint* paint = nullptr) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4898 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4899 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4900 | #Line # draws proportionally stretched Bitmap ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4901 | |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 4902 | Draw Bitmap bitmap stretched proportionally to fit into Rect dst. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4903 | |
| 4904 | Lattice lattice divides bitmap into a rectangular grid. |
| 4905 | Each intersection of an even-numbered row and column is fixed; like the corners |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4906 | of drawBitmapNine, fixed lattice elements never scale larger than their initial |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4907 | size and shrink proportionately when all fixed elements exceed the bitmap |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4908 | dimension. All other grid elements scale to fill the available space, if any. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4909 | |
| 4910 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4911 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4912 | #paint_as_used_by_draw_lattice_or_draw_nine(bitmap)# |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4913 | |
| 4914 | If generated mask extends beyond bitmap bounds, replicate bitmap edge colors, |
| 4915 | just as Shader made from SkShader::MakeBitmapShader with |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4916 | SkShader::kClamp_TileMode set replicates the bitmap edge color when it samples |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4917 | outside of its bounds. |
| 4918 | |
| 4919 | #Param bitmap Bitmap containing pixels, dimensions, and format ## |
| 4920 | #Param lattice division of bitmap into fixed and variable rectangles ## |
| 4921 | #Param dst destination Rect of image to draw to ## |
| 4922 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4923 | and so on; or nullptr |
| 4924 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4925 | |
| 4926 | #Example |
| 4927 | #Height 128 |
| 4928 | #Description |
| 4929 | The two leftmost bitmap draws has four corners and sides to the left and right of center. |
| 4930 | The leftmost bitmap draw scales the width of corners proportionately to fit. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4931 | The third and fourth draw corners are not scaled; the sides are scaled to |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4932 | fill the remaining space; the center is transparent. |
| 4933 | The rightmost bitmap draw has four corners scaled vertically to fit, and uses sides above |
| 4934 | and below center to fill the remaining space. |
| 4935 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4936 | void draw(SkCanvas* canvas) { |
| 4937 | SkIRect center = { 20, 10, 50, 40 }; |
| 4938 | SkBitmap bitmap; |
| 4939 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(60, 60)); |
| 4940 | SkCanvas bitCanvas(bitmap); |
| 4941 | SkPaint paint; |
| 4942 | SkColor gray = 0xFF000000; |
| 4943 | int left = 0; |
| 4944 | for (auto right: { center.fLeft, center.fRight, bitmap.width() } ) { |
| 4945 | int top = 0; |
| 4946 | for (auto bottom: { center.fTop, center.fBottom, bitmap.height() } ) { |
| 4947 | paint.setColor(gray); |
| 4948 | bitCanvas.drawIRect(SkIRect::MakeLTRB(left, top, right, bottom), paint); |
| 4949 | gray += 0x001f1f1f; |
| 4950 | top = bottom; |
| 4951 | } |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4952 | left = right; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4953 | } |
| 4954 | const int xDivs[] = { center.fLeft, center.fRight }; |
| 4955 | const int yDivs[] = { center.fTop, center.fBottom }; |
Cary Clark | ca3ebcd | 2017-12-12 11:22:38 -0500 | [diff] [blame] | 4956 | SkCanvas::Lattice::RectType fillTypes[3][3]; |
| 4957 | memset(fillTypes, 0, sizeof(fillTypes)); |
| 4958 | fillTypes[1][1] = SkCanvas::Lattice::kTransparent; |
| 4959 | SkColor dummy[9]; // temporary pending bug fix |
| 4960 | SkCanvas::Lattice lattice = { xDivs, yDivs, fillTypes[0], SK_ARRAY_COUNT(xDivs), |
| 4961 | SK_ARRAY_COUNT(yDivs), nullptr, dummy }; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4962 | for (auto dest: { 20, 30, 40, 60, 90 } ) { |
Cary Clark | ca3ebcd | 2017-12-12 11:22:38 -0500 | [diff] [blame] | 4963 | canvas->drawBitmapLattice(bitmap, lattice, SkRect::MakeWH(dest, 110 - dest), nullptr); |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4964 | canvas->translate(dest + 4, 0); |
| 4965 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4966 | } |
| 4967 | ## |
| 4968 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4969 | #SeeAlso drawImageLattice drawBitmap drawBitmapNine Lattice |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4970 | |
| 4971 | ## |
| 4972 | |
| 4973 | # ------------------------------------------------------------------------------ |
| 4974 | |
| 4975 | #Method void drawImageLattice(const SkImage* image, const Lattice& lattice, const SkRect& dst, |
| 4976 | const SkPaint* paint = nullptr) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4977 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4978 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4979 | #Line # draws proportionally stretched Image ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4980 | |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 4981 | Draw Image image stretched proportionally to fit into Rect dst. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4982 | |
| 4983 | Lattice lattice divides image into a rectangular grid. |
| 4984 | Each intersection of an even-numbered row and column is fixed; like the corners |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4985 | of drawBitmapNine, fixed lattice elements never scale larger than their initial |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4986 | size and shrink proportionately when all fixed elements exceed the bitmap |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4987 | dimension. All other grid elements scale to fill the available space, if any. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4988 | |
| 4989 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4990 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4991 | #paint_as_used_by_draw_lattice_or_draw_nine(image)# |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4992 | |
| 4993 | If generated mask extends beyond bitmap bounds, replicate bitmap edge colors, |
| 4994 | just as Shader made from SkShader::MakeBitmapShader with |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4995 | SkShader::kClamp_TileMode set replicates the bitmap edge color when it samples |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4996 | outside of its bounds. |
| 4997 | |
| 4998 | #Param image Image containing pixels, dimensions, and format ## |
| 4999 | #Param lattice division of bitmap into fixed and variable rectangles ## |
| 5000 | #Param dst destination Rect of image to draw to ## |
| 5001 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 5002 | and so on; or nullptr |
| 5003 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5004 | |
| 5005 | #Example |
| 5006 | #Height 128 |
| 5007 | #Description |
| 5008 | The leftmost image is smaller than center; only corners are drawn, all scaled to fit. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5009 | The second image equals the size of center; only corners are drawn without scaling. |
| 5010 | The remaining images are larger than center. All corners draw without scaling. The sides |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5011 | are scaled if needed to take up the remaining space; the center is transparent. |
| 5012 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5013 | void draw(SkCanvas* canvas) { |
| 5014 | SkIRect center = { 20, 10, 50, 40 }; |
| 5015 | SkBitmap bitmap; |
| 5016 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(60, 60)); |
| 5017 | SkCanvas bitCanvas(bitmap); |
| 5018 | SkPaint paint; |
| 5019 | SkColor gray = 0xFF000000; |
| 5020 | int left = 0; |
| 5021 | for (auto right: { center.fLeft, center.fRight, bitmap.width() } ) { |
| 5022 | int top = 0; |
| 5023 | for (auto bottom: { center.fTop, center.fBottom, bitmap.height() } ) { |
| 5024 | paint.setColor(gray); |
| 5025 | bitCanvas.drawIRect(SkIRect::MakeLTRB(left, top, right, bottom), paint); |
| 5026 | gray += 0x001f1f1f; |
| 5027 | top = bottom; |
| 5028 | } |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5029 | left = right; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5030 | } |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5031 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(bitmap); |
| 5032 | SkImage* imagePtr = image.get(); |
| 5033 | for (auto dest: { 20, 30, 40, 60, 90 } ) { |
| 5034 | canvas->drawImageNine(imagePtr, center, SkRect::MakeWH(dest, dest), nullptr); |
| 5035 | canvas->translate(dest + 4, 0); |
| 5036 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5037 | } |
| 5038 | ## |
| 5039 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5040 | #SeeAlso drawBitmapLattice drawImage drawImageNine Lattice |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5041 | |
| 5042 | ## |
| 5043 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 5044 | #Subtopic Lattice ## |
| 5045 | |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 5046 | #Subtopic Draw_Image ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5047 | |
| 5048 | # ------------------------------------------------------------------------------ |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5049 | #Subtopic Draw_Text |
| 5050 | #Populate |
| 5051 | #Line # draws text into Canvas ## |
| 5052 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5053 | |
| 5054 | #Method void drawText(const void* text, size_t byteLength, SkScalar x, SkScalar y, |
| 5055 | const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5056 | #In Draw_Text |
| 5057 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5058 | #Line # draws text at (x, y), using font advance ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5059 | |
| 5060 | Draw text, with origin at (x, y), using Clip, Matrix, and Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5061 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5062 | text meaning depends on Paint_Text_Encoding; by default, text is encoded as |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5063 | UTF-8. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5064 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5065 | x and y meaning depends on Paint_Text_Align and Paint_Vertical_Text; by default |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5066 | text draws left to right, positioning the first glyph left side bearing at x |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5067 | and its baseline at y. Text size is affected by Matrix and Paint_Text_Size. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5068 | |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 5069 | All elements of paint: Path_Effect, Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5070 | Color_Filter, Image_Filter, and Draw_Looper; apply to text. By default, draws |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5071 | filled 12 point black Glyphs. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5072 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5073 | #Param text character code points or Glyphs drawn ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5074 | #Param byteLength byte length of text array ## |
| 5075 | #Param x start of text on x-axis ## |
| 5076 | #Param y start of text on y-axis ## |
| 5077 | #Param paint text size, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5078 | |
| 5079 | #Example |
| 5080 | #Height 200 |
| 5081 | #Description |
| 5082 | The same text is drawn varying Paint_Text_Size and varying |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5083 | Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5084 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5085 | void draw(SkCanvas* canvas) { |
| 5086 | SkPaint paint; |
| 5087 | paint.setAntiAlias(true); |
| 5088 | float textSizes[] = { 12, 18, 24, 36 }; |
| 5089 | for (auto size: textSizes ) { |
| 5090 | paint.setTextSize(size); |
| 5091 | canvas->drawText("Aa", 2, 10, 20, paint); |
| 5092 | canvas->translate(0, size * 2); |
| 5093 | } |
| 5094 | paint.reset(); |
| 5095 | paint.setAntiAlias(true); |
| 5096 | float yPos = 20; |
| 5097 | for (auto size: textSizes ) { |
| 5098 | float scale = size / 12.f; |
| 5099 | canvas->resetMatrix(); |
| 5100 | canvas->translate(100, 0); |
| 5101 | canvas->scale(scale, scale); |
| 5102 | canvas->drawText("Aa", 2, 10 / scale, yPos / scale, paint); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5103 | yPos += size * 2; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5104 | } |
| 5105 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5106 | ## |
| 5107 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5108 | #SeeAlso drawString drawPosText drawPosTextH drawTextBlob drawTextOnPath drawTextRSXform |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5109 | |
| 5110 | ## |
| 5111 | |
| 5112 | #Method void drawString(const char* string, SkScalar x, SkScalar y, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5113 | #In Draw_Text |
| 5114 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5115 | #Line # draws null terminated string at (x, y) using font advance ## |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 5116 | Draws null terminated string, with origin at (x, y), using Clip, Matrix, and |
| 5117 | Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5118 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5119 | string meaning depends on Paint_Text_Encoding; by default, strings are encoded |
| 5120 | as UTF-8. Other values of Paint_Text_Encoding are unlikely to produce the desired |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5121 | results, since zero bytes may be embedded in the string. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5122 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5123 | x and y meaning depends on Paint_Text_Align and Paint_Vertical_Text; by default |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5124 | string draws left to right, positioning the first glyph left side bearing at x |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5125 | and its baseline at y. Text size is affected by Matrix and Paint_Text_Size. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5126 | |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 5127 | All elements of paint: Path_Effect, Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5128 | Color_Filter, Image_Filter, and Draw_Looper; apply to text. By default, draws |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5129 | filled 12 point black Glyphs. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5130 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5131 | #Param string character code points or Glyphs drawn, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5132 | ending with a char value of zero |
| 5133 | ## |
| 5134 | #Param x start of string on x-axis ## |
| 5135 | #Param y start of string on y-axis ## |
| 5136 | #Param paint text size, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5137 | |
| 5138 | #Example |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 5139 | #Height 48 |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5140 | SkPaint paint; |
| 5141 | canvas->drawString("a small hello", 20, 20, paint); |
| 5142 | ## |
| 5143 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5144 | #SeeAlso drawText drawPosText drawPosTextH drawTextBlob drawTextOnPath drawTextRSXform |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5145 | |
| 5146 | ## |
| 5147 | |
| 5148 | #Method void drawString(const SkString& string, SkScalar x, SkScalar y, const SkPaint& paint) |
| 5149 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5150 | Draw null terminated string, with origin at (x, y), using Clip, Matrix, and |
| 5151 | Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5152 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5153 | string meaning depends on Paint_Text_Encoding; by default, strings are encoded |
| 5154 | as UTF-8. Other values of Paint_Text_Encoding are unlikely to produce the desired |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5155 | results, since zero bytes may be embedded in the string. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5156 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5157 | x and y meaning depends on Paint_Text_Align and Paint_Vertical_Text; by default |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5158 | string draws left to right, positioning the first glyph left side bearing at x |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5159 | and its baseline at y. Text size is affected by Matrix and Paint_Text_Size. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5160 | |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 5161 | All elements of paint: Path_Effect, Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5162 | Color_Filter, Image_Filter, and Draw_Looper; apply to text. By default, draws |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5163 | filled 12 point black Glyphs. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5164 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5165 | #Param string character code points or Glyphs drawn, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5166 | ending with a char value of zero |
| 5167 | ## |
| 5168 | #Param x start of string on x-axis ## |
| 5169 | #Param y start of string on y-axis ## |
| 5170 | #Param paint text size, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5171 | |
| 5172 | #Example |
| 5173 | SkPaint paint; |
| 5174 | SkString string("a small hello"); |
| 5175 | canvas->drawString(string, 20, 20, paint); |
| 5176 | ## |
| 5177 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5178 | #SeeAlso drawText drawPosText drawPosTextH drawTextBlob drawTextOnPath drawTextRSXform |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5179 | |
| 5180 | ## |
| 5181 | |
| 5182 | # ------------------------------------------------------------------------------ |
| 5183 | |
| 5184 | #Method void drawPosText(const void* text, size_t byteLength, const SkPoint pos[], |
| 5185 | const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5186 | #In Draw_Text |
| 5187 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5188 | #Line # draws text at array of (x, y) positions ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5189 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5190 | Draw each glyph in text with the origin in pos array, using Clip, Matrix, and |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5191 | Paint paint. The number of entries in pos array must match the number of Glyphs |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5192 | described by byteLength of text. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5193 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5194 | text meaning depends on Paint_Text_Encoding; by default, text is encoded as |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5195 | UTF-8. pos elements' meaning depends on Paint_Text_Align and Paint_Vertical_Text; |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5196 | by default each glyph left side bearing is positioned at x and its |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5197 | baseline is positioned at y. Text size is affected by Matrix and |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5198 | Paint_Text_Size. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5199 | |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 5200 | All elements of paint: Path_Effect, Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5201 | Color_Filter, Image_Filter, and Draw_Looper; apply to text. By default, draws |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5202 | filled 12 point black Glyphs. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5203 | |
| 5204 | Layout engines such as Harfbuzz typically position each glyph |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5205 | rather than using the font advance widths. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5206 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5207 | #Param text character code points or Glyphs drawn ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5208 | #Param byteLength byte length of text array ## |
| 5209 | #Param pos array of glyph origins ## |
| 5210 | #Param paint text size, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5211 | |
| 5212 | #Example |
| 5213 | #Height 120 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5214 | void draw(SkCanvas* canvas) { |
| 5215 | const char hello[] = "HeLLo!"; |
| 5216 | const SkPoint pos[] = { {40, 100}, {82, 95}, {115, 110}, {130, 95}, {145, 85}, |
| 5217 | {172, 100} }; |
| 5218 | SkPaint paint; |
| 5219 | paint.setTextSize(60); |
| 5220 | canvas->drawPosText(hello, strlen(hello), pos, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5221 | } |
| 5222 | ## |
| 5223 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5224 | #SeeAlso drawText drawPosTextH drawTextBlob drawTextOnPath drawTextRSXform |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5225 | |
| 5226 | ## |
| 5227 | |
| 5228 | # ------------------------------------------------------------------------------ |
| 5229 | |
| 5230 | #Method void drawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[], SkScalar constY, |
| 5231 | const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5232 | #In Draw_Text |
| 5233 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5234 | #Line # draws text at x positions with common baseline ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5235 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5236 | Draw each glyph in text with its (x, y) origin composed from xpos array and |
| 5237 | constY, using Clip, Matrix, and Paint paint. The number of entries in xpos array |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5238 | must match the number of Glyphs described by byteLength of text. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5239 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5240 | text meaning depends on Paint_Text_Encoding; by default, text is encoded as |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5241 | UTF-8. xpos elements' meaning depends on Paint_Text_Align and Paint_Vertical_Text; |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5242 | by default each glyph left side bearing is positioned at an xpos element and |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5243 | its baseline is positioned at constY. Text size is affected by Matrix and |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5244 | Paint_Text_Size. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5245 | |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 5246 | All elements of paint: Path_Effect, Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5247 | Color_Filter, Image_Filter, and Draw_Looper; apply to text. By default, draws |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5248 | filled 12 point black Glyphs. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5249 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5250 | Layout engines such as Harfbuzz typically position each glyph |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5251 | rather than using the font advance widths if all Glyphs share the same |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5252 | baseline. |
| 5253 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5254 | #Param text character code points or Glyphs drawn ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5255 | #Param byteLength byte length of text array ## |
| 5256 | #Param xpos array of x positions, used to position each glyph ## |
| 5257 | #Param constY shared y coordinate for all of x positions ## |
| 5258 | #Param paint text size, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5259 | |
| 5260 | #Example |
| 5261 | #Height 40 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5262 | void draw(SkCanvas* canvas) { |
| 5263 | SkScalar xpos[] = { 20, 40, 80, 160 }; |
| 5264 | SkPaint paint; |
| 5265 | canvas->drawPosTextH("XXXX", 4, xpos, 20, paint); |
| 5266 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5267 | ## |
| 5268 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5269 | #SeeAlso drawText drawPosText drawTextBlob drawTextOnPath drawTextRSXform |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5270 | |
| 5271 | ## |
| 5272 | |
| 5273 | # ------------------------------------------------------------------------------ |
| 5274 | |
| 5275 | #Method void drawTextOnPathHV(const void* text, size_t byteLength, const SkPath& path, SkScalar hOffset, |
| 5276 | SkScalar vOffset, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5277 | #In Draw_Text |
| 5278 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5279 | #Line # draws text following Path with offsets ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5280 | |
| 5281 | Draw text on Path path, using Clip, Matrix, and Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5282 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5283 | Origin of text is at distance hOffset along the path, offset by a perpendicular |
| 5284 | vector of length vOffset. If the path section corresponding the glyph advance is |
| 5285 | curved, the glyph is drawn curved to match; control points in the glyph are |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5286 | mapped to projected points parallel to the path. If the text advance is larger |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5287 | than the path length, the excess text is clipped. |
| 5288 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5289 | text meaning depends on Paint_Text_Encoding; by default, text is encoded as |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5290 | UTF-8. Origin meaning depends on Paint_Text_Align and Paint_Vertical_Text; by |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5291 | default text positions the first glyph left side bearing at origin x and its |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5292 | baseline at origin y. Text size is affected by Matrix and Paint_Text_Size. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5293 | |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 5294 | All elements of paint: Path_Effect, Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5295 | Color_Filter, Image_Filter, and Draw_Looper; apply to text. By default, draws |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5296 | filled 12 point black Glyphs. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5297 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5298 | #Param text character code points or Glyphs drawn ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5299 | #Param byteLength byte length of text array ## |
| 5300 | #Param path Path providing text baseline ## |
| 5301 | #Param hOffset distance along path to offset origin ## |
| 5302 | #Param vOffset offset of text above (if negative) or below (if positive) the path ## |
| 5303 | #Param paint text size, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5304 | |
| 5305 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5306 | void draw(SkCanvas* canvas) { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5307 | const char aero[] = "correo a" "\xC3" "\xA9" "reo"; |
| 5308 | const size_t len = sizeof(aero) - 1; |
| 5309 | SkPath path; |
| 5310 | path.addOval({43-26, 43-26, 43+26, 43+26}, SkPath::kCW_Direction, 3); |
| 5311 | SkPaint paint; |
| 5312 | paint.setTextSize(24); |
| 5313 | for (auto offset : { 0, 10, 20 } ) { |
| 5314 | canvas->drawTextOnPathHV(aero, len, path, 0, -offset, paint); |
| 5315 | canvas->translate(70 + offset, 70 + offset); |
| 5316 | } |
| 5317 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5318 | ## |
| 5319 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5320 | #SeeAlso drawTextOnPath drawText drawPosTextH drawTextBlob drawTextRSXform |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5321 | |
| 5322 | ## |
| 5323 | |
| 5324 | # ------------------------------------------------------------------------------ |
| 5325 | |
| 5326 | #Method void drawTextOnPath(const void* text, size_t byteLength, const SkPath& path, |
| 5327 | const SkMatrix* matrix, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5328 | #In Draw_Text |
| 5329 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5330 | #Line # draws text following Path contour ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5331 | |
| 5332 | Draw text on Path path, using Clip, Matrix, and Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5333 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 5334 | Origin of text is at beginning of path offset by matrix, if not nullptr. |
| 5335 | matrix also transforms text before text is mapped to path. If the path section |
| 5336 | corresponding the glyph advance is curved, the glyph is drawn curved to match; |
| 5337 | control points in the glyph are mapped to projected points parallel to the path. |
| 5338 | If the text advance is larger than the path length, the excess text is clipped. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5339 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5340 | text meaning depends on Paint_Text_Encoding; by default, text is encoded as |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5341 | UTF-8. Origin meaning depends on Paint_Text_Align and Paint_Vertical_Text; by |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5342 | default text positions the first glyph left side bearing at origin x and its |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 5343 | baseline at origin y. Text size is affected by matrix parameter, Canvas_Matrix, |
| 5344 | and Paint_Text_Size. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5345 | |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 5346 | All elements of paint: Path_Effect, Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5347 | Color_Filter, Image_Filter, and Draw_Looper; apply to text. By default, draws |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 5348 | filled 12 point black Glyphs. Canvas Matrix does effect paint Shader, but |
| 5349 | matrix parameter does not. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5350 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5351 | #Param text character code points or Glyphs drawn ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5352 | #Param byteLength byte length of text array ## |
| 5353 | #Param path Path providing text baseline ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5354 | #Param matrix transform of Glyphs before mapping to path; may be nullptr |
Cary Clark | a523d2d | 2017-08-30 08:58:10 -0400 | [diff] [blame] | 5355 | to use identity Matrix |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5356 | ## |
| 5357 | #Param paint text size, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5358 | |
| 5359 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5360 | void draw(SkCanvas* canvas) { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5361 | const char roller[] = "rollercoaster"; |
| 5362 | const size_t len = sizeof(roller) - 1; |
| 5363 | SkPath path; |
| 5364 | path.cubicTo(40, -80, 120, 80, 160, -40); |
| 5365 | SkPaint paint; |
| 5366 | paint.setTextSize(32); |
| 5367 | paint.setStyle(SkPaint::kStroke_Style); |
| 5368 | SkMatrix matrix; |
| 5369 | matrix.setIdentity(); |
| 5370 | for (int i = 0; i < 3; ++i) { |
| 5371 | canvas->translate(25, 60); |
| 5372 | canvas->drawPath(path, paint); |
| 5373 | canvas->drawTextOnPath(roller, len, path, &matrix, paint); |
| 5374 | matrix.preTranslate(0, 10); |
| 5375 | } |
| 5376 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5377 | ## |
| 5378 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5379 | #SeeAlso drawTextOnPathHV drawText drawPosTextH drawTextBlob drawTextRSXform |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5380 | |
| 5381 | ## |
| 5382 | |
| 5383 | # ------------------------------------------------------------------------------ |
| 5384 | |
| 5385 | #Method void drawTextRSXform(const void* text, size_t byteLength, const SkRSXform xform[], |
| 5386 | const SkRect* cullRect, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5387 | #In Draw_Text |
| 5388 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5389 | #Line # draws text with array of RSXform ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5390 | |
| 5391 | Draw text, transforming each glyph by the corresponding SkRSXform, |
| 5392 | using Clip, Matrix, and Paint paint. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5393 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5394 | RSXform array specifies a separate square scale, rotation, and translation for |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5395 | each glyph. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5396 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5397 | Optional Rect cullRect is a conservative bounds of text, taking into account |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5398 | RSXform and paint. If cullRect is outside of Clip, canvas can skip drawing. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5399 | |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 5400 | All elements of paint: Path_Effect, Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5401 | Color_Filter, Image_Filter, and Draw_Looper; apply to text. By default, draws |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5402 | filled 12 point black Glyphs. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5403 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5404 | #Param text character code points or Glyphs drawn ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5405 | #Param byteLength byte length of text array ## |
| 5406 | #Param xform RSXform rotates, scales, and translates each glyph individually ## |
| 5407 | #Param cullRect Rect bounds of text for efficient clipping; or nullptr ## |
| 5408 | #Param paint text size, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5409 | |
| 5410 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5411 | void draw(SkCanvas* canvas) { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5412 | const int iterations = 26; |
| 5413 | SkRSXform transforms[iterations]; |
| 5414 | char alphabet[iterations]; |
| 5415 | SkScalar angle = 0; |
| 5416 | SkScalar scale = 1; |
| 5417 | for (size_t i = 0; i < SK_ARRAY_COUNT(transforms); ++i) { |
| 5418 | const SkScalar s = SkScalarSin(angle) * scale; |
| 5419 | const SkScalar c = SkScalarCos(angle) * scale; |
| 5420 | transforms[i] = SkRSXform::Make(-c, -s, -s * 16, c * 16); |
| 5421 | angle += .45; |
| 5422 | scale += .2; |
| 5423 | alphabet[i] = 'A' + i; |
| 5424 | } |
| 5425 | SkPaint paint; |
| 5426 | paint.setTextAlign(SkPaint::kCenter_Align); |
| 5427 | canvas->translate(110, 138); |
| 5428 | canvas->drawTextRSXform(alphabet, sizeof(alphabet), transforms, nullptr, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5429 | } |
| 5430 | ## |
| 5431 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5432 | #SeeAlso drawTextOnPath drawTextOnPathHV drawText drawPosText drawTextBlob |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5433 | |
| 5434 | ## |
| 5435 | |
| 5436 | # ------------------------------------------------------------------------------ |
| 5437 | |
| 5438 | #Method void drawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5439 | #In Draw_Text |
| 5440 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5441 | #Line # draws text with arrays of positions and Paint ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5442 | Draw Text_Blob blob at (x, y), using Clip, Matrix, and Paint paint. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5443 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5444 | blob contains Glyphs, their positions, and paint attributes specific to text: |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5445 | Typeface, Paint_Text_Size, Paint_Text_Scale_X, Paint_Text_Skew_X, |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 5446 | Paint_Text_Align, Paint_Hinting, Anti_Alias, Paint_Fake_Bold, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5447 | Font_Embedded_Bitmaps, Full_Hinting_Spacing, LCD_Text, Linear_Text, |
| 5448 | Subpixel_Text, and Paint_Vertical_Text. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5449 | |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 5450 | Paint_Text_Encoding must be set to SkPaint::kGlyphID_TextEncoding. |
| 5451 | |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 5452 | Elements of paint: Path_Effect, Mask_Filter, Shader, Color_Filter, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5453 | Image_Filter, and Draw_Looper; apply to blob. |
| 5454 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5455 | #Param blob Glyphs, positions, and their paints' text size, typeface, and so on ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5456 | #Param x horizontal offset applied to blob ## |
| 5457 | #Param y vertical offset applied to blob ## |
| 5458 | #Param paint blend, color, stroking, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5459 | |
| 5460 | #Example |
| 5461 | #Height 120 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5462 | void draw(SkCanvas* canvas) { |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 5463 | SkTextBlobBuilder textBlobBuilder; |
| 5464 | const char bunny[] = "/(^x^)\\"; |
| 5465 | const int len = sizeof(bunny) - 1; |
| 5466 | uint16_t glyphs[len]; |
| 5467 | SkPaint paint; |
| 5468 | paint.textToGlyphs(bunny, len, glyphs); |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 5469 | paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding); |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 5470 | int runs[] = { 3, 1, 3 }; |
| 5471 | SkPoint textPos = { 20, 100 }; |
| 5472 | int glyphIndex = 0; |
| 5473 | for (auto runLen : runs) { |
| 5474 | paint.setTextSize(1 == runLen ? 20 : 50); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5475 | const SkTextBlobBuilder::RunBuffer& run = |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 5476 | textBlobBuilder.allocRun(paint, runLen, textPos.fX, textPos.fY); |
| 5477 | memcpy(run.glyphs, &glyphs[glyphIndex], sizeof(glyphs[0]) * runLen); |
| 5478 | textPos.fX += paint.measureText(&glyphs[glyphIndex], sizeof(glyphs[0]) * runLen, nullptr); |
| 5479 | glyphIndex += runLen; |
| 5480 | } |
| 5481 | sk_sp<const SkTextBlob> blob = textBlobBuilder.make(); |
| 5482 | paint.reset(); |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5483 | canvas->drawTextBlob(blob.get(), 0, 0, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5484 | } |
| 5485 | ## |
| 5486 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5487 | #SeeAlso drawText drawPosText drawPosTextH |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5488 | |
| 5489 | ## |
| 5490 | |
| 5491 | # ------------------------------------------------------------------------------ |
| 5492 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5493 | #Method void drawTextBlob(const sk_sp<SkTextBlob>& blob, SkScalar x, SkScalar y, const SkPaint& paint) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5494 | |
| 5495 | Draw Text_Blob blob at (x, y), using Clip, Matrix, and Paint paint. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5496 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5497 | blob contains Glyphs, their positions, and paint attributes specific to text: |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5498 | Typeface, Paint_Text_Size, Paint_Text_Scale_X, Paint_Text_Skew_X, |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 5499 | Paint_Text_Align, Paint_Hinting, Anti_Alias, Paint_Fake_Bold, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5500 | Font_Embedded_Bitmaps, Full_Hinting_Spacing, LCD_Text, Linear_Text, |
| 5501 | Subpixel_Text, and Paint_Vertical_Text. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5502 | |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 5503 | Paint_Text_Encoding must be set to SkPaint::kGlyphID_TextEncoding. |
| 5504 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5505 | Elements of paint: Path_Effect, Mask_Filter, Shader, Color_Filter, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5506 | Image_Filter, and Draw_Looper; apply to blob. |
| 5507 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5508 | #Param blob Glyphs, positions, and their paints' text size, typeface, and so on ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5509 | #Param x horizontal offset applied to blob ## |
| 5510 | #Param y vertical offset applied to blob ## |
| 5511 | #Param paint blend, color, stroking, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5512 | |
| 5513 | #Example |
| 5514 | #Height 120 |
| 5515 | #Description |
| 5516 | Paint attributes unrelated to text, like color, have no effect on paint in allocated Text_Blob. |
| 5517 | Paint attributes related to text, like text size, have no effect on paint passed to drawTextBlob. |
| 5518 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5519 | void draw(SkCanvas* canvas) { |
| 5520 | SkTextBlobBuilder textBlobBuilder; |
| 5521 | SkPaint paint; |
| 5522 | paint.setTextSize(50); |
| 5523 | paint.setColor(SK_ColorRED); |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 5524 | paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5525 | const SkTextBlobBuilder::RunBuffer& run = |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5526 | textBlobBuilder.allocRun(paint, 1, 20, 100); |
| 5527 | run.glyphs[0] = 20; |
| 5528 | sk_sp<const SkTextBlob> blob = textBlobBuilder.make(); |
| 5529 | paint.setTextSize(10); |
| 5530 | paint.setColor(SK_ColorBLUE); |
| 5531 | canvas->drawTextBlob(blob.get(), 0, 0, paint); |
| 5532 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5533 | ## |
| 5534 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5535 | #SeeAlso drawText drawPosText drawPosTextH |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5536 | |
| 5537 | ## |
| 5538 | |
| 5539 | # ------------------------------------------------------------------------------ |
| 5540 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5541 | #Method void drawPicture(const SkPicture* picture) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5542 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5543 | #Line # draws Picture using Clip and Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5544 | Draw Picture picture, using Clip and Matrix. |
| 5545 | Clip and Matrix are unchanged by picture contents, as if |
| 5546 | save() was called before and restore() was called after drawPicture. |
| 5547 | |
| 5548 | Picture records a series of draw commands for later playback. |
| 5549 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5550 | #Param picture recorded drawing commands to play ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5551 | |
| 5552 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5553 | void draw(SkCanvas* canvas) { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5554 | SkPictureRecorder recorder; |
| 5555 | SkCanvas* recordingCanvas = recorder.beginRecording(50, 50); |
| 5556 | for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xff007f00 } ) { |
| 5557 | SkPaint paint; |
| 5558 | paint.setColor(color); |
| 5559 | recordingCanvas->drawRect({10, 10, 30, 40}, paint); |
| 5560 | recordingCanvas->translate(10, 10); |
| 5561 | recordingCanvas->scale(1.2f, 1.4f); |
| 5562 | } |
| 5563 | sk_sp<SkPicture> playback = recorder.finishRecordingAsPicture(); |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5564 | canvas->drawPicture(playback); |
| 5565 | canvas->scale(2, 2); |
| 5566 | canvas->translate(50, 0); |
| 5567 | canvas->drawPicture(playback); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5568 | } |
| 5569 | ## |
| 5570 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5571 | #SeeAlso drawDrawable SkPicture SkPicture::playback |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5572 | |
| 5573 | ## |
| 5574 | |
| 5575 | # ------------------------------------------------------------------------------ |
| 5576 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5577 | #Method void drawPicture(const sk_sp<SkPicture>& picture) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5578 | |
| 5579 | Draw Picture picture, using Clip and Matrix. |
| 5580 | Clip and Matrix are unchanged by picture contents, as if |
| 5581 | save() was called before and restore() was called after drawPicture. |
| 5582 | |
| 5583 | Picture records a series of draw commands for later playback. |
| 5584 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5585 | #Param picture recorded drawing commands to play ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5586 | |
| 5587 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5588 | void draw(SkCanvas* canvas) { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5589 | SkPictureRecorder recorder; |
| 5590 | SkCanvas* recordingCanvas = recorder.beginRecording(50, 50); |
| 5591 | for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xff007f00 } ) { |
| 5592 | SkPaint paint; |
| 5593 | paint.setColor(color); |
| 5594 | recordingCanvas->drawRect({10, 10, 30, 40}, paint); |
| 5595 | recordingCanvas->translate(10, 10); |
| 5596 | recordingCanvas->scale(1.2f, 1.4f); |
| 5597 | } |
| 5598 | sk_sp<SkPicture> playback = recorder.finishRecordingAsPicture(); |
| 5599 | canvas->drawPicture(playback); |
| 5600 | canvas->scale(2, 2); |
| 5601 | canvas->translate(50, 0); |
| 5602 | canvas->drawPicture(playback); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5603 | } |
| 5604 | ## |
| 5605 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5606 | #SeeAlso drawDrawable SkPicture SkPicture::playback |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5607 | |
| 5608 | ## |
| 5609 | |
| 5610 | # ------------------------------------------------------------------------------ |
| 5611 | |
| 5612 | #Method void drawPicture(const SkPicture* picture, const SkMatrix* matrix, const SkPaint* paint) |
| 5613 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5614 | Draw Picture picture, using Clip and Matrix; transforming picture with |
| 5615 | Matrix matrix, if provided; and use Paint paint Color_Alpha, Color_Filter, |
| 5616 | Image_Filter, and Blend_Mode, if provided. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5617 | |
| 5618 | matrix transformation is equivalent to: save(), concat(), drawPicture, restore(). |
| 5619 | paint use is equivalent to: saveLayer, drawPicture, restore(). |
| 5620 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5621 | #Param picture recorded drawing commands to play ## |
| 5622 | #Param matrix Matrix to rotate, scale, translate, and so on; may be nullptr ## |
| 5623 | #Param paint Paint to apply transparency, filtering, and so on; may be nullptr ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5624 | |
| 5625 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5626 | void draw(SkCanvas* canvas) { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5627 | SkPaint paint; |
| 5628 | SkPictureRecorder recorder; |
| 5629 | SkCanvas* recordingCanvas = recorder.beginRecording(50, 50); |
| 5630 | for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xff007f00 } ) { |
| 5631 | paint.setColor(color); |
| 5632 | recordingCanvas->drawRect({10, 10, 30, 40}, paint); |
| 5633 | recordingCanvas->translate(10, 10); |
| 5634 | recordingCanvas->scale(1.2f, 1.4f); |
| 5635 | } |
| 5636 | sk_sp<SkPicture> playback = recorder.finishRecordingAsPicture(); |
| 5637 | const SkPicture* playbackPtr = playback.get(); |
| 5638 | SkMatrix matrix; |
| 5639 | matrix.reset(); |
| 5640 | for (auto alpha : { 70, 140, 210 } ) { |
| 5641 | paint.setAlpha(alpha); |
| 5642 | canvas->drawPicture(playbackPtr, &matrix, &paint); |
| 5643 | matrix.preTranslate(70, 70); |
| 5644 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5645 | } |
| 5646 | ## |
| 5647 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5648 | #SeeAlso drawDrawable SkPicture SkPicture::playback |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5649 | |
| 5650 | ## |
| 5651 | |
| 5652 | # ------------------------------------------------------------------------------ |
| 5653 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5654 | #Method void drawPicture(const sk_sp<SkPicture>& picture, const SkMatrix* matrix, const SkPaint* paint) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5655 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5656 | Draw Picture picture, using Clip and Matrix; transforming picture with |
| 5657 | Matrix matrix, if provided; and use Paint paint Color_Alpha, Color_Filter, |
| 5658 | Image_Filter, and Blend_Mode, if provided. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5659 | |
| 5660 | matrix transformation is equivalent to: save(), concat(), drawPicture, restore(). |
| 5661 | paint use is equivalent to: saveLayer, drawPicture, restore(). |
| 5662 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5663 | #Param picture recorded drawing commands to play ## |
| 5664 | #Param matrix Matrix to rotate, scale, translate, and so on; may be nullptr ## |
| 5665 | #Param paint Paint to apply transparency, filtering, and so on; may be nullptr ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5666 | |
| 5667 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5668 | void draw(SkCanvas* canvas) { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5669 | SkPaint paint; |
| 5670 | SkPictureRecorder recorder; |
| 5671 | SkCanvas* recordingCanvas = recorder.beginRecording(50, 50); |
| 5672 | for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xff007f00 } ) { |
| 5673 | paint.setColor(color); |
| 5674 | recordingCanvas->drawRect({10, 10, 30, 40}, paint); |
| 5675 | recordingCanvas->translate(10, 10); |
| 5676 | recordingCanvas->scale(1.2f, 1.4f); |
| 5677 | } |
| 5678 | sk_sp<SkPicture> playback = recorder.finishRecordingAsPicture(); |
| 5679 | SkMatrix matrix; |
| 5680 | matrix.reset(); |
| 5681 | for (auto alpha : { 70, 140, 210 } ) { |
| 5682 | paint.setAlpha(alpha); |
| 5683 | canvas->drawPicture(playback, &matrix, &paint); |
| 5684 | matrix.preTranslate(70, 70); |
| 5685 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5686 | } |
| 5687 | ## |
| 5688 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5689 | #SeeAlso drawDrawable SkPicture SkPicture::playback |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5690 | |
| 5691 | ## |
| 5692 | |
| 5693 | # ------------------------------------------------------------------------------ |
| 5694 | |
| 5695 | #Method void drawVertices(const SkVertices* vertices, SkBlendMode mode, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5696 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5697 | #Line # draws Vertices, a triangle mesh ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5698 | Draw Vertices vertices, a triangle mesh, using Clip and Matrix. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5699 | If Vertices_Texs and Vertices_Colors are defined in vertices, and Paint paint |
| 5700 | contains Shader, Blend_Mode mode combines Vertices_Colors with Shader. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5701 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5702 | #Param vertices triangle mesh to draw ## |
| 5703 | #Param mode combines Vertices_Colors with Shader, if both are present ## |
| 5704 | #Param paint specifies the Shader, used as Vertices texture; may be nullptr ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5705 | |
| 5706 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5707 | void draw(SkCanvas* canvas) { |
| 5708 | SkPaint paint; |
| 5709 | SkPoint points[] = { { 0, 0 }, { 250, 0 }, { 100, 100 }, { 0, 250 } }; |
| 5710 | SkColor colors[] = { SK_ColorRED, SK_ColorBLUE, SK_ColorYELLOW, SK_ColorCYAN }; |
| 5711 | auto vertices = SkVertices::MakeCopy(SkVertices::kTriangleFan_VertexMode, |
| 5712 | SK_ARRAY_COUNT(points), points, nullptr, colors); |
| 5713 | canvas->drawVertices(vertices.get(), SkBlendMode::kSrc, paint); |
| 5714 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5715 | ## |
| 5716 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5717 | #SeeAlso drawPatch drawPicture |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5718 | |
| 5719 | ## |
| 5720 | |
| 5721 | # ------------------------------------------------------------------------------ |
| 5722 | |
| 5723 | #Method void drawVertices(const sk_sp<SkVertices>& vertices, SkBlendMode mode, const SkPaint& paint) |
| 5724 | |
| 5725 | Draw Vertices vertices, a triangle mesh, using Clip and Matrix. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5726 | If Vertices_Texs and Vertices_Colors are defined in vertices, and Paint paint |
| 5727 | contains Shader, Blend_Mode mode combines Vertices_Colors with Shader. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5728 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5729 | #Param vertices triangle mesh to draw ## |
| 5730 | #Param mode combines Vertices_Colors with Shader, if both are present ## |
| 5731 | #Param paint specifies the Shader, used as Vertices texture, may be nullptr ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5732 | |
| 5733 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5734 | void draw(SkCanvas* canvas) { |
| 5735 | SkPaint paint; |
| 5736 | SkPoint points[] = { { 0, 0 }, { 250, 0 }, { 100, 100 }, { 0, 250 } }; |
| 5737 | SkPoint texs[] = { { 0, 0 }, { 0, 250 }, { 250, 250 }, { 250, 0 } }; |
| 5738 | SkColor colors[] = { SK_ColorRED, SK_ColorBLUE, SK_ColorYELLOW, SK_ColorCYAN }; |
| 5739 | paint.setShader(SkGradientShader::MakeLinear(points, colors, nullptr, 4, |
| 5740 | SkShader::kClamp_TileMode)); |
| 5741 | auto vertices = SkVertices::MakeCopy(SkVertices::kTriangleFan_VertexMode, |
| 5742 | SK_ARRAY_COUNT(points), points, texs, colors); |
| 5743 | canvas->drawVertices(vertices.get(), SkBlendMode::kDarken, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5744 | } |
| 5745 | ## |
| 5746 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5747 | #SeeAlso drawPatch drawPicture |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5748 | |
| 5749 | ## |
| 5750 | |
| 5751 | # ------------------------------------------------------------------------------ |
| 5752 | |
| 5753 | #Method void drawPatch(const SkPoint cubics[12], const SkColor colors[4], |
| 5754 | const SkPoint texCoords[4], SkBlendMode mode, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5755 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5756 | #Line # draws Coons_Patch ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5757 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5758 | Draws a Coons_Patch: the interpolation of four cubics with shared corners, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5759 | associating a color, and optionally a texture coordinate, with each corner. |
| 5760 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 5761 | Coons_Patch uses Clip and Matrix, paint Shader, Color_Filter, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5762 | Color_Alpha, Image_Filter, and Blend_Mode. If Shader is provided it is treated |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 5763 | as Coons_Patch texture; Blend_Mode mode combines Color colors and Shader if |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5764 | both are provided. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5765 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5766 | Point array cubics specifies four Cubics starting at the top-left corner, |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5767 | in clockwise order, sharing every fourth point. The last Cubic ends at the |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5768 | first point. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5769 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5770 | Color array color associates colors with corners in top-left, top-right, |
| 5771 | bottom-right, bottom-left order. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5772 | |
| 5773 | If paint contains Shader, Point array texCoords maps Shader as texture to |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5774 | corners in top-left, top-right, bottom-right, bottom-left order. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5775 | |
Cary Clark | a523d2d | 2017-08-30 08:58:10 -0400 | [diff] [blame] | 5776 | #Param cubics Path_Cubic array, sharing common points ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5777 | #Param colors Color array, one for each corner ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5778 | #Param texCoords Point array of texture coordinates, mapping Shader to corners; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5779 | may be nullptr |
Cary Clark | 579985c | 2017-07-31 11:48:27 -0400 | [diff] [blame] | 5780 | #Param ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5781 | #Param mode Blend_Mode for colors, and for Shader if paint has one ## |
| 5782 | #Param paint Shader, Color_Filter, Blend_Mode, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5783 | |
| 5784 | #Example |
| 5785 | #Image 5 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5786 | void draw(SkCanvas* canvas) { |
| 5787 | // SkBitmap source = cmbkygk; |
| 5788 | SkPaint paint; |
| 5789 | paint.setFilterQuality(kLow_SkFilterQuality); |
| 5790 | paint.setAntiAlias(true); |
| 5791 | SkPoint cubics[] = { { 3, 1 }, { 4, 2 }, { 5, 1 }, { 7, 3 }, |
| 5792 | /* { 7, 3 }, */ { 6, 4 }, { 7, 5 }, { 5, 7 }, |
| 5793 | /* { 5, 7 }, */ { 4, 6 }, { 3, 7 }, { 1, 5 }, |
| 5794 | /* { 1, 5 }, */ { 2, 4 }, { 1, 3 }, /* { 3, 1 } */ }; |
| 5795 | SkColor colors[] = { 0xbfff0000, 0xbf0000ff, 0xbfff00ff, 0xbf00ffff }; |
| 5796 | SkPoint texCoords[] = { { -30, -30 }, { 162, -30}, { 162, 162}, { -30, 162} }; |
| 5797 | paint.setShader(SkShader::MakeBitmapShader(source, SkShader::kClamp_TileMode, |
| 5798 | SkShader::kClamp_TileMode, nullptr)); |
| 5799 | canvas->scale(15, 15); |
| 5800 | for (auto blend : { SkBlendMode::kSrcOver, SkBlendMode::kModulate, SkBlendMode::kXor } ) { |
| 5801 | canvas->drawPatch(cubics, colors, texCoords, blend, paint); |
| 5802 | canvas->translate(4, 4); |
| 5803 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5804 | } |
| 5805 | ## |
| 5806 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5807 | #ToDo can patch use image filter? ## |
| 5808 | #SeeAlso SeeAlso drawVertices drawPicture |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5809 | |
| 5810 | ## |
| 5811 | |
| 5812 | # ------------------------------------------------------------------------------ |
| 5813 | |
| 5814 | #Method void drawPatch(const SkPoint cubics[12], const SkColor colors[4], |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5815 | const SkPoint texCoords[4], const SkPaint& paint) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5816 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5817 | Draws Cubic Coons_Patch: the interpolation of four cubics with shared corners, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5818 | associating a color, and optionally a texture coordinate, with each corner. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5819 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 5820 | Coons_Patch uses Clip and Matrix, paint Shader, Color_Filter, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5821 | Color_Alpha, Image_Filter, and Blend_Mode. If Shader is provided it is treated |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 5822 | as Coons_Patch texture; Blend_Mode mode combines Color colors and Shader if |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5823 | both are provided. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5824 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5825 | Point array cubics specifies four Cubics starting at the top-left corner, |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5826 | in clockwise order, sharing every fourth point. The last Cubic ends at the |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5827 | first point. |
| 5828 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5829 | Color array color associates colors with corners in top-left, top-right, |
| 5830 | bottom-right, bottom-left order. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5831 | |
| 5832 | If paint contains Shader, Point array texCoords maps Shader as texture to |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5833 | corners in top-left, top-right, bottom-right, bottom-left order. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5834 | |
Cary Clark | a523d2d | 2017-08-30 08:58:10 -0400 | [diff] [blame] | 5835 | #Param cubics Path_Cubic array, sharing common points ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5836 | #Param colors Color array, one for each corner ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5837 | #Param texCoords Point array of texture coordinates, mapping Shader to corners; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5838 | may be nullptr |
Cary Clark | 579985c | 2017-07-31 11:48:27 -0400 | [diff] [blame] | 5839 | #Param ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5840 | #Param paint Shader, Color_Filter, Blend_Mode, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5841 | |
| 5842 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5843 | void draw(SkCanvas* canvas) { |
| 5844 | SkPaint paint; |
| 5845 | paint.setAntiAlias(true); |
| 5846 | SkPoint cubics[] = { { 3, 1 }, { 4, 2 }, { 5, 1 }, { 7, 3 }, |
| 5847 | /* { 7, 3 }, */ { 6, 4 }, { 7, 5 }, { 5, 7 }, |
| 5848 | /* { 5, 7 }, */ { 4, 6 }, { 3, 7 }, { 1, 5 }, |
| 5849 | /* { 1, 5 }, */ { 2, 4 }, { 1, 3 }, /* { 3, 1 } */ }; |
| 5850 | SkColor colors[] = { SK_ColorRED, SK_ColorBLUE, SK_ColorYELLOW, SK_ColorCYAN }; |
| 5851 | canvas->scale(30, 30); |
| 5852 | canvas->drawPatch(cubics, colors, nullptr, paint); |
| 5853 | SkPoint text[] = { {3,0.9f}, {4,2.5f}, {5,0.9f}, {7.5f,3.2f}, {5.5f,4.2f}, |
| 5854 | {7.5f,5.2f}, {5,7.5f}, {4,5.9f}, {3,7.5f}, {0.5f,5.2f}, {2.5f,4.2f}, |
| 5855 | {0.5f,3.2f} }; |
| 5856 | paint.setTextSize(18.f / 30); |
| 5857 | paint.setTextAlign(SkPaint::kCenter_Align); |
| 5858 | for (int i = 0; i< 10; ++i) { |
| 5859 | char digit = '0' + i; |
| 5860 | canvas->drawText(&digit, 1, text[i].fX, text[i].fY, paint); |
| 5861 | } |
| 5862 | canvas->drawString("10", text[10].fX, text[10].fY, paint); |
| 5863 | canvas->drawString("11", text[11].fX, text[11].fY, paint); |
| 5864 | paint.setStyle(SkPaint::kStroke_Style); |
| 5865 | canvas->drawPoints(SkCanvas::kPolygon_PointMode, 12, cubics, paint); |
| 5866 | canvas->drawLine(cubics[11].fX, cubics[11].fY, cubics[0].fX, cubics[0].fY, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5867 | } |
| 5868 | ## |
| 5869 | |
| 5870 | #Example |
| 5871 | #Image 6 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5872 | void draw(SkCanvas* canvas) { |
| 5873 | // SkBitmap source = checkerboard; |
| 5874 | SkPaint paint; |
| 5875 | paint.setFilterQuality(kLow_SkFilterQuality); |
| 5876 | paint.setAntiAlias(true); |
| 5877 | SkPoint cubics[] = { { 3, 1 }, { 4, 2 }, { 5, 1 }, { 7, 3 }, |
| 5878 | /* { 7, 3 }, */ { 6, 4 }, { 7, 5 }, { 5, 7 }, |
| 5879 | /* { 5, 7 }, */ { 4, 6 }, { 3, 7 }, { 1, 5 }, |
| 5880 | /* { 1, 5 }, */ { 2, 4 }, { 1, 3 }, /* { 3, 1 } */ }; |
| 5881 | SkPoint texCoords[] = { { 0, 0 }, { 0, 62}, { 62, 62}, { 62, 0 } }; |
| 5882 | paint.setShader(SkShader::MakeBitmapShader(source, SkShader::kClamp_TileMode, |
| 5883 | SkShader::kClamp_TileMode, nullptr)); |
| 5884 | canvas->scale(30, 30); |
| 5885 | canvas->drawPatch(cubics, nullptr, texCoords, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5886 | } |
| 5887 | ## |
| 5888 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5889 | #ToDo can patch use image filter? ## |
| 5890 | #SeeAlso SeeAlso drawVertices drawPicture |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5891 | |
| 5892 | ## |
| 5893 | |
| 5894 | # ------------------------------------------------------------------------------ |
| 5895 | |
| 5896 | #Method void drawAtlas(const SkImage* atlas, const SkRSXform xform[], const SkRect tex[], |
| 5897 | const SkColor colors[], int count, SkBlendMode mode, const SkRect* cullRect, |
| 5898 | const SkPaint* paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5899 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5900 | #Line # draws sprites using Clip, Matrix, and Paint ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5901 | |
| 5902 | Draw a set of sprites from atlas, using Clip, Matrix, and optional Paint paint. |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 5903 | paint uses Anti_Alias, Color_Alpha, Color_Filter, Image_Filter, and Blend_Mode |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5904 | to draw, if present. For each entry in the array, Rect tex locates sprite in |
| 5905 | atlas, and RSXform xform transforms it into destination space. |
| 5906 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5907 | xform, text, and colors if present, must contain count entries. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5908 | Optional colors are applied for each sprite using Blend_Mode. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5909 | Optional cullRect is a conservative bounds of all transformed sprites. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5910 | If cullRect is outside of Clip, canvas can skip drawing. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5911 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5912 | #Param atlas Image containing sprites ## |
| 5913 | #Param xform RSXform mappings for sprites in atlas ## |
| 5914 | #Param tex Rect locations of sprites in atlas ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 5915 | #Param colors one per sprite, blended with sprite using Blend_Mode; may be nullptr ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5916 | #Param count number of sprites to draw ## |
| 5917 | #Param mode Blend_Mode combining colors and sprites ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 5918 | #Param cullRect bounds of transformed sprites for efficient clipping; may be nullptr ## |
| 5919 | #Param paint Color_Filter, Image_Filter, Blend_Mode, and so on; may be nullptr ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5920 | |
| 5921 | #Example |
| 5922 | #Image 3 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5923 | void draw(SkCanvas* canvas) { |
| 5924 | // SkBitmap source = mandrill; |
| 5925 | SkRSXform xforms[] = { { .5f, 0, 0, 0 }, {0, .5f, 200, 100 } }; |
| 5926 | SkRect tex[] = { { 0, 0, 250, 250 }, { 0, 0, 250, 250 } }; |
| 5927 | SkColor colors[] = { 0x7f55aa00, 0x7f3333bf }; |
| 5928 | const SkImage* imagePtr = image.get(); |
| 5929 | canvas->drawAtlas(imagePtr, xforms, tex, colors, 2, SkBlendMode::kSrcOver, nullptr, nullptr); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5930 | } |
| 5931 | ## |
| 5932 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5933 | #SeeAlso drawBitmap drawImage |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5934 | |
| 5935 | ## |
| 5936 | |
| 5937 | # ------------------------------------------------------------------------------ |
| 5938 | |
| 5939 | #Method void drawAtlas(const sk_sp<SkImage>& atlas, const SkRSXform xform[], const SkRect tex[], |
| 5940 | const SkColor colors[], int count, SkBlendMode mode, const SkRect* cullRect, |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5941 | const SkPaint* paint) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5942 | |
| 5943 | Draw a set of sprites from atlas, using Clip, Matrix, and optional Paint paint. |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 5944 | paint uses Anti_Alias, Color_Alpha, Color_Filter, Image_Filter, and Blend_Mode |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5945 | to draw, if present. For each entry in the array, Rect tex locates sprite in |
| 5946 | atlas, and RSXform xform transforms it into destination space. |
| 5947 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5948 | xform, text, and colors if present, must contain count entries. |
| 5949 | Optional colors is applied for each sprite using Blend_Mode. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5950 | Optional cullRect is a conservative bounds of all transformed sprites. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5951 | If cullRect is outside of Clip, canvas can skip drawing. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5952 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5953 | #Param atlas Image containing sprites ## |
| 5954 | #Param xform RSXform mappings for sprites in atlas ## |
| 5955 | #Param tex Rect locations of sprites in atlas ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 5956 | #Param colors one per sprite, blended with sprite using Blend_Mode; may be nullptr ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5957 | #Param count number of sprites to draw ## |
| 5958 | #Param mode Blend_Mode combining colors and sprites ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 5959 | #Param cullRect bounds of transformed sprites for efficient clipping; may be nullptr ## |
| 5960 | #Param paint Color_Filter, Image_Filter, Blend_Mode, and so on; may be nullptr ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5961 | |
| 5962 | #Example |
| 5963 | #Image 3 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5964 | void draw(SkCanvas* canvas) { |
| 5965 | // SkBitmap source = mandrill; |
| 5966 | SkRSXform xforms[] = { { .5f, 0, 0, 0 }, {0, .5f, 200, 100 } }; |
| 5967 | SkRect tex[] = { { 0, 0, 250, 250 }, { 0, 0, 250, 250 } }; |
| 5968 | SkColor colors[] = { 0x7f55aa00, 0x7f3333bf }; |
| 5969 | SkPaint paint; |
| 5970 | paint.setAlpha(127); |
| 5971 | canvas->drawAtlas(image, xforms, tex, colors, 2, SkBlendMode::kPlus, nullptr, &paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5972 | } |
| 5973 | ## |
| 5974 | |
| 5975 | #ToDo bug in example on cpu side, gpu looks ok ## |
| 5976 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5977 | #SeeAlso drawBitmap drawImage |
| 5978 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5979 | ## |
| 5980 | |
| 5981 | # ------------------------------------------------------------------------------ |
| 5982 | |
| 5983 | #Method void drawAtlas(const SkImage* atlas, const SkRSXform xform[], const SkRect tex[], int count, |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5984 | const SkRect* cullRect, const SkPaint* paint) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5985 | |
| 5986 | Draw a set of sprites from atlas, using Clip, Matrix, and optional Paint paint. |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 5987 | paint uses Anti_Alias, Color_Alpha, Color_Filter, Image_Filter, and Blend_Mode |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5988 | to draw, if present. For each entry in the array, Rect tex locates sprite in |
| 5989 | atlas, and RSXform xform transforms it into destination space. |
| 5990 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5991 | xform and text must contain count entries. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5992 | Optional cullRect is a conservative bounds of all transformed sprites. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5993 | If cullRect is outside of Clip, canvas can skip drawing. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5994 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5995 | #Param atlas Image containing sprites ## |
| 5996 | #Param xform RSXform mappings for sprites in atlas ## |
| 5997 | #Param tex Rect locations of sprites in atlas ## |
| 5998 | #Param count number of sprites to draw ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 5999 | #Param cullRect bounds of transformed sprites for efficient clipping; may be nullptr ## |
| 6000 | #Param paint Color_Filter, Image_Filter, Blend_Mode, and so on; may be nullptr ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6001 | |
| 6002 | #Example |
| 6003 | #Image 3 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6004 | void draw(SkCanvas* canvas) { |
| 6005 | // sk_sp<SkImage> image = mandrill; |
| 6006 | SkRSXform xforms[] = { { .5f, 0, 0, 0 }, {0, .5f, 200, 100 } }; |
| 6007 | SkRect tex[] = { { 0, 0, 250, 250 }, { 0, 0, 250, 250 } }; |
| 6008 | const SkImage* imagePtr = image.get(); |
| 6009 | canvas->drawAtlas(imagePtr, xforms, tex, 2, nullptr, nullptr); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6010 | } |
| 6011 | ## |
| 6012 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 6013 | #SeeAlso drawBitmap drawImage |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6014 | |
| 6015 | ## |
| 6016 | |
| 6017 | # ------------------------------------------------------------------------------ |
| 6018 | |
| 6019 | #Method void drawAtlas(const sk_sp<SkImage>& atlas, const SkRSXform xform[], const SkRect tex[], |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 6020 | int count, const SkRect* cullRect, const SkPaint* paint) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6021 | |
| 6022 | Draw a set of sprites from atlas, using Clip, Matrix, and optional Paint paint. |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 6023 | paint uses Anti_Alias, Color_Alpha, Color_Filter, Image_Filter, and Blend_Mode |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6024 | to draw, if present. For each entry in the array, Rect tex locates sprite in |
| 6025 | atlas, and RSXform xform transforms it into destination space. |
| 6026 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6027 | xform and text must contain count entries. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 6028 | Optional cullRect is a conservative bounds of all transformed sprites. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 6029 | If cullRect is outside of Clip, canvas can skip drawing. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6030 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6031 | #Param atlas Image containing sprites ## |
| 6032 | #Param xform RSXform mappings for sprites in atlas ## |
| 6033 | #Param tex Rect locations of sprites in atlas ## |
| 6034 | #Param count number of sprites to draw ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 6035 | #Param cullRect bounds of transformed sprites for efficient clipping; may be nullptr ## |
| 6036 | #Param paint Color_Filter, Image_Filter, Blend_Mode, and so on; may be nullptr ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6037 | |
| 6038 | #Example |
| 6039 | #Image 3 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6040 | void draw(SkCanvas* canvas) { |
| 6041 | // sk_sp<SkImage> image = mandrill; |
| 6042 | SkRSXform xforms[] = { { 1, 0, 0, 0 }, {0, 1, 300, 100 } }; |
| 6043 | SkRect tex[] = { { 0, 0, 200, 200 }, { 200, 0, 400, 200 } }; |
| 6044 | canvas->drawAtlas(image, xforms, tex, 2, nullptr, nullptr); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6045 | } |
| 6046 | ## |
| 6047 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 6048 | #SeeAlso drawBitmap drawImage |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6049 | |
| 6050 | ## |
| 6051 | |
| 6052 | # ------------------------------------------------------------------------------ |
| 6053 | |
Cary Clark | 73fa972 | 2017-08-29 17:36:51 -0400 | [diff] [blame] | 6054 | #Method void drawDrawable(SkDrawable* drawable, const SkMatrix* matrix = nullptr) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 6055 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 6056 | #Line # draws Drawable, encapsulated drawing commands ## |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 6057 | Draw Drawable drawable using Clip and Matrix, concatenated with |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6058 | optional matrix. |
| 6059 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 6060 | If Canvas has an asynchronous implementation, as is the case |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6061 | when it is recording into Picture, then drawable will be referenced, |
| 6062 | so that SkDrawable::draw() can be called when the operation is finalized. To force |
| 6063 | immediate drawing, call SkDrawable::draw() instead. |
| 6064 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6065 | #Param drawable custom struct encapsulating drawing commands ## |
| 6066 | #Param matrix transformation applied to drawing; may be nullptr ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6067 | |
| 6068 | #Example |
| 6069 | #Height 100 |
| 6070 | #Function |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6071 | struct MyDrawable : public SkDrawable { |
| 6072 | SkRect onGetBounds() override { return SkRect::MakeWH(50, 100); } |
| 6073 | |
| 6074 | void onDraw(SkCanvas* canvas) override { |
| 6075 | SkPath path; |
| 6076 | path.conicTo(10, 90, 50, 90, 0.9f); |
| 6077 | SkPaint paint; |
| 6078 | paint.setColor(SK_ColorBLUE); |
| 6079 | canvas->drawRect(path.getBounds(), paint); |
| 6080 | paint.setAntiAlias(true); |
| 6081 | paint.setColor(SK_ColorWHITE); |
| 6082 | canvas->drawPath(path, paint); |
| 6083 | } |
| 6084 | }; |
| 6085 | |
| 6086 | #Function ## |
| 6087 | void draw(SkCanvas* canvas) { |
| 6088 | sk_sp<SkDrawable> drawable(new MyDrawable); |
| 6089 | SkMatrix matrix; |
| 6090 | matrix.setTranslate(10, 10); |
| 6091 | canvas->drawDrawable(drawable.get(), &matrix); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6092 | } |
| 6093 | ## |
| 6094 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 6095 | #SeeAlso SkDrawable drawPicture |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6096 | |
| 6097 | ## |
| 6098 | |
| 6099 | # ------------------------------------------------------------------------------ |
| 6100 | |
| 6101 | #Method void drawDrawable(SkDrawable* drawable, SkScalar x, SkScalar y) |
| 6102 | |
| 6103 | Draw Drawable drawable using Clip and Matrix, offset by (x, y). |
| 6104 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 6105 | If Canvas has an asynchronous implementation, as is the case |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6106 | when it is recording into Picture, then drawable will be referenced, |
| 6107 | so that SkDrawable::draw() can be called when the operation is finalized. To force |
| 6108 | immediate drawing, call SkDrawable::draw() instead. |
| 6109 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6110 | #Param drawable custom struct encapsulating drawing commands ## |
| 6111 | #Param x offset into Canvas writable pixels in x ## |
| 6112 | #Param y offset into Canvas writable pixels in y ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6113 | |
| 6114 | #Example |
| 6115 | #Height 100 |
| 6116 | #Function |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6117 | struct MyDrawable : public SkDrawable { |
| 6118 | SkRect onGetBounds() override { return SkRect::MakeWH(50, 100); } |
| 6119 | |
| 6120 | void onDraw(SkCanvas* canvas) override { |
| 6121 | SkPath path; |
| 6122 | path.conicTo(10, 90, 50, 90, 0.9f); |
| 6123 | SkPaint paint; |
| 6124 | paint.setColor(SK_ColorBLUE); |
| 6125 | canvas->drawRect(path.getBounds(), paint); |
| 6126 | paint.setAntiAlias(true); |
| 6127 | paint.setColor(SK_ColorWHITE); |
| 6128 | canvas->drawPath(path, paint); |
| 6129 | } |
| 6130 | }; |
| 6131 | |
| 6132 | #Function ## |
| 6133 | void draw(SkCanvas* canvas) { |
| 6134 | sk_sp<SkDrawable> drawable(new MyDrawable); |
| 6135 | canvas->drawDrawable(drawable.get(), 10, 10); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6136 | } |
| 6137 | ## |
| 6138 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 6139 | #SeeAlso SkDrawable drawPicture |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6140 | |
| 6141 | ## |
| 6142 | |
| 6143 | # ------------------------------------------------------------------------------ |
| 6144 | |
| 6145 | #Method void drawAnnotation(const SkRect& rect, const char key[], SkData* value) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 6146 | #In Draw |
| 6147 | #In Utility |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 6148 | #Line # associates a Rect with a key-value pair ## |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 6149 | Associate Rect on Canvas with an annotation; a key-value pair, where the key is |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6150 | a null-terminated utf8 string, and optional value is stored as Data. |
| 6151 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 6152 | Only some canvas implementations, such as recording to Picture, or drawing to |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6153 | Document_PDF, use annotations. |
| 6154 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6155 | #Param rect Rect extent of canvas to annotate ## |
| 6156 | #Param key string used for lookup ## |
| 6157 | #Param value data holding value stored in annotation ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6158 | |
| 6159 | #Example |
| 6160 | #Height 1 |
| 6161 | const char text[] = "Click this link!"; |
| 6162 | SkRect bounds; |
| 6163 | SkPaint paint; |
| 6164 | paint.setTextSize(40); |
| 6165 | (void)paint.measureText(text, strlen(text), &bounds); |
| 6166 | const char url[] = "https://www.google.com/"; |
| 6167 | sk_sp<SkData> urlData(SkData::MakeWithCString(url)); |
| 6168 | canvas->drawAnnotation(bounds, "url_key", urlData.get()); |
| 6169 | ## |
| 6170 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 6171 | #SeeAlso SkPicture SkDocument |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6172 | |
| 6173 | ## |
| 6174 | |
| 6175 | # ------------------------------------------------------------------------------ |
| 6176 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 6177 | #Method void drawAnnotation(const SkRect& rect, const char key[], const sk_sp<SkData>& value) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6178 | |
| 6179 | Associate Rect on Canvas when an annotation; a key-value pair, where the key is |
| 6180 | a null-terminated utf8 string, and optional value is stored as Data. |
| 6181 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 6182 | Only some canvas implementations, such as recording to Picture, or drawing to |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6183 | Document_PDF, use annotations. |
| 6184 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6185 | #Param rect Rect extent of canvas to annotate ## |
| 6186 | #Param key string used for lookup ## |
| 6187 | #Param value data holding value stored in annotation ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6188 | |
| 6189 | #Example |
| 6190 | #Height 1 |
| 6191 | const char text[] = "Click this link!"; |
| 6192 | SkRect bounds; |
| 6193 | SkPaint paint; |
| 6194 | paint.setTextSize(40); |
| 6195 | (void)paint.measureText(text, strlen(text), &bounds); |
| 6196 | const char url[] = "https://www.google.com/"; |
| 6197 | sk_sp<SkData> urlData(SkData::MakeWithCString(url)); |
| 6198 | canvas->drawAnnotation(bounds, "url_key", urlData.get()); |
| 6199 | ## |
| 6200 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 6201 | #SeeAlso SkPicture SkDocument |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6202 | |
| 6203 | ## |
| 6204 | |
| 6205 | #Method SkDrawFilter* getDrawFilter() const |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 6206 | #Deprecated soon |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6207 | ## |
| 6208 | |
| 6209 | #Method virtual SkDrawFilter* setDrawFilter(SkDrawFilter* filter) |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 6210 | #Deprecated soon |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6211 | ## |
| 6212 | |
| 6213 | # ------------------------------------------------------------------------------ |
| 6214 | |
| 6215 | #Method virtual bool isClipEmpty() const |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 6216 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 6217 | #Line # returns if Clip is empty ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6218 | Returns true if Clip is empty; that is, nothing will draw. |
| 6219 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6220 | May do work when called; it should not be called |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6221 | more often than needed. However, once called, subsequent calls perform no |
| 6222 | work until Clip changes. |
| 6223 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6224 | #Return true if Clip is empty ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6225 | |
| 6226 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6227 | void draw(SkCanvas* canvas) { |
| 6228 | SkDebugf("clip is%s empty\n", canvas->isClipEmpty() ? "" : " not"); |
| 6229 | SkPath path; |
| 6230 | canvas->clipPath(path); |
| 6231 | SkDebugf("clip is%s empty\n", canvas->isClipEmpty() ? "" : " not"); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6232 | } |
| 6233 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6234 | clip is not empty |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6235 | clip is empty |
| 6236 | ## |
| 6237 | ## |
| 6238 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 6239 | #SeeAlso isClipRect getLocalClipBounds getDeviceClipBounds |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6240 | |
| 6241 | ## |
| 6242 | |
| 6243 | # ------------------------------------------------------------------------------ |
| 6244 | |
| 6245 | #Method virtual bool isClipRect() const |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 6246 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 6247 | #Line # returns if Clip is Rect and not empty ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6248 | Returns true if Clip is Rect and not empty. |
| 6249 | Returns false if the clip is empty, or if it is not Rect. |
| 6250 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6251 | #Return true if Clip is Rect and not empty ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6252 | |
| 6253 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6254 | void draw(SkCanvas* canvas) { |
| 6255 | SkDebugf("clip is%s rect\n", canvas->isClipRect() ? "" : " not"); |
| 6256 | canvas->clipRect({0, 0, 0, 0}); |
| 6257 | SkDebugf("clip is%s rect\n", canvas->isClipRect() ? "" : " not"); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6258 | } |
| 6259 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6260 | clip is rect |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6261 | clip is not rect |
| 6262 | ## |
| 6263 | ## |
| 6264 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 6265 | #SeeAlso isClipEmpty getLocalClipBounds getDeviceClipBounds |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6266 | |
| 6267 | ## |
| 6268 | |
| 6269 | #Class SkCanvas ## |
Cary Clark | 884dd7d | 2017-10-11 10:37:52 -0400 | [diff] [blame] | 6270 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6271 | #Topic Canvas ## |