Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1 | #Topic Canvas |
Cary Clark | 137b874 | 2018-05-30 09:21:49 -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 | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 310 | Constructs 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 | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 390 | For use by 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 | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 405 | Constructs a canvas that draws into bitmap. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 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 | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 565 | Copies Surface_Properties, if Canvas is associated with Raster_Surface or |
| 566 | GPU_Surface, and returns true. Otherwise, returns false and leave props unchanged. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 567 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 568 | #Param props storage for writable SkSurfaceProps ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 569 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 570 | #Return true if Surface_Properties was copied ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 571 | |
| 572 | #ToDo This seems old style. Deprecate? ## |
| 573 | |
| 574 | #Example |
| 575 | SkBitmap bitmap; |
| 576 | SkCanvas canvas(bitmap, SkSurfaceProps(0, kRGB_V_SkPixelGeometry)); |
| 577 | SkSurfaceProps surfaceProps(0, kUnknown_SkPixelGeometry); |
| 578 | SkDebugf("isRGB:%d\n", SkPixelGeometryIsRGB(surfaceProps.pixelGeometry())); |
| 579 | if (!canvas.getProps(&surfaceProps)) { |
| 580 | SkDebugf("getProps failed unexpectedly.\n"); |
| 581 | } |
| 582 | SkDebugf("isRGB:%d\n", SkPixelGeometryIsRGB(surfaceProps.pixelGeometry())); |
| 583 | |
| 584 | #StdOut |
| 585 | isRGB:0 |
| 586 | isRGB:1 |
| 587 | #StdOut ## |
| 588 | ## |
| 589 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 590 | #SeeAlso SkSurfaceProps makeSurface |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 591 | |
| 592 | ## |
| 593 | |
| 594 | # ------------------------------------------------------------------------------ |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 595 | #Subtopic Utility |
| 596 | #Populate |
| 597 | #Line # rarely called management functions ## |
| 598 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 599 | |
| 600 | #Method void flush() |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 601 | #In Utility |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 602 | #Line # triggers execution of all pending draw operations ## |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 603 | Triggers the immediate execution of all pending draw operations. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 604 | If Canvas is associated with GPU_Surface, resolves all pending GPU operations. |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 605 | If Canvas is associated with Raster_Surface, has no effect; raster draw |
| 606 | operations are never deferred. |
| 607 | |
| 608 | #ToDo |
| 609 | In an overview section on managing the GPU, include: |
| 610 | - flush should never change what is drawn |
| 611 | - call to kick off gpu work |
| 612 | - calling too much impacts performance |
| 613 | - some calls (peekPixels, prepareForExternalIO) call it internally |
| 614 | - canvas call is local, GrContext::flush is global |
| 615 | - diffentiate between flush, flushAndSignalSemaphores |
| 616 | - normally never needs to be called |
| 617 | - call it when sharing gpu resources, feeling memory pressure, swapping out app, and before |
| 618 | abandoning context |
| 619 | - also call to say "I'm finished drawing here", e.g., when drawing to a GPU-backed offscreen surface |
| 620 | (created with SkSurface::MakeRenderTarget) |
| 621 | |
| 622 | for posterity: this doesn't show a difference: fiddle.skia.org/c/@flushfail |
| 623 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 624 | |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 625 | #ToDo haven't thought of a useful example to put here ## |
| 626 | #NoExample |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 627 | ## |
| 628 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 629 | #SeeAlso peekPixels SkSurface::flush() GrContext::flush() SkSurface::prepareForExternalIO GrContext::abandonContext() |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 630 | |
| 631 | ## |
| 632 | |
| 633 | # ------------------------------------------------------------------------------ |
| 634 | |
| 635 | #Method virtual SkISize getBaseLayerSize() const |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 636 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 637 | #Line # returns size of base Layer in global coordinates ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 638 | Gets the size of the base or root Layer in global canvas coordinates. The |
| 639 | 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] | 640 | smaller (due to clipping or saveLayer). |
| 641 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 642 | #Return integral width and height of base Layer ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 643 | |
| 644 | #Example |
| 645 | SkBitmap bitmap; |
| 646 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(20, 30)); |
| 647 | SkCanvas canvas(bitmap, SkSurfaceProps(0, kUnknown_SkPixelGeometry)); |
| 648 | canvas.clipRect(SkRect::MakeWH(10, 40)); |
| 649 | SkIRect clipDeviceBounds = canvas.getDeviceClipBounds(); |
| 650 | if (clipDeviceBounds.isEmpty()) { |
| 651 | SkDebugf("Empty clip bounds is unexpected!\n"); |
| 652 | } |
| 653 | SkDebugf("clip=%d,%d\n", clipDeviceBounds.width(), clipDeviceBounds.height()); |
| 654 | SkISize baseLayerSize = canvas.getBaseLayerSize(); |
| 655 | SkDebugf("size=%d,%d\n", baseLayerSize.width(), baseLayerSize.height()); |
| 656 | |
| 657 | #StdOut |
| 658 | clip=10,30 |
| 659 | size=20,30 |
| 660 | ## |
| 661 | ## |
| 662 | |
| 663 | #ToDo is this the same as the width and height of surface? ## |
| 664 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 665 | #SeeAlso getDeviceClipBounds |
| 666 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 667 | ## |
| 668 | |
| 669 | # ------------------------------------------------------------------------------ |
| 670 | |
| 671 | #Method sk_sp<SkSurface> makeSurface(const SkImageInfo& info, const SkSurfaceProps* props = nullptr) |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 672 | #In Constructor |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 673 | #Line # creates Surface matching SkImageInfo and SkSurfaceProps ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 674 | Creates Surface matching info and props, and associates it with Canvas. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 675 | Returns nullptr if no match found. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 676 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 677 | If props is nullptr, matches Surface_Properties in Canvas. If props is nullptr and Canvas |
| 678 | does not have Surface_Properties, creates Surface with default Surface_Properties. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 679 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 680 | #Param info width, height, Color_Type, Alpha_Type, and Color_Space ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 681 | #Param props Surface_Properties to match; may be nullptr to match Canvas ## |
| 682 | |
| 683 | #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] | 684 | |
| 685 | #Example |
| 686 | sk_sp<SkSurface> surface = SkSurface::MakeRasterN32Premul(5, 6); |
| 687 | SkCanvas* smallCanvas = surface->getCanvas(); |
| 688 | SkImageInfo imageInfo = SkImageInfo::MakeN32Premul(3, 4); |
| 689 | sk_sp<SkSurface> compatible = smallCanvas->makeSurface(imageInfo); |
| 690 | SkDebugf("compatible %c= nullptr\n", compatible == nullptr ? '=' : '!'); |
| 691 | SkDebugf("size = %d, %d\n", compatible->width(), compatible->height()); |
| 692 | |
| 693 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 694 | compatible != nullptr |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 695 | size = 3, 4 |
| 696 | ## |
| 697 | ## |
| 698 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 699 | #SeeAlso SkSurface SkSurface::makeSurface SkImageInfo SkSurfaceProps |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 700 | |
| 701 | ## |
| 702 | |
| 703 | # ------------------------------------------------------------------------------ |
| 704 | |
| 705 | #Method virtual GrContext* getGrContext() |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 706 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 707 | #Line # returns GPU_Context of the GPU_Surface ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 708 | Returns GPU_Context of the GPU_Surface associated with Canvas. |
| 709 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 710 | #Return GPU_Context, if available; nullptr otherwise ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 711 | |
| 712 | #Example |
| 713 | void draw(SkCanvas* canvas) { |
| 714 | if (canvas->getGrContext()) { |
| 715 | canvas->clear(SK_ColorRED); |
| 716 | } else { |
| 717 | canvas->clear(SK_ColorBLUE); |
| 718 | } |
| 719 | } |
| 720 | ## |
| 721 | |
| 722 | #ToDo fiddle should show both CPU and GPU out ## |
| 723 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 724 | #SeeAlso GrContext |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 725 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 726 | ## |
| 727 | |
| 728 | # ------------------------------------------------------------------------------ |
| 729 | |
Cary Clark | 73fa972 | 2017-08-29 17:36:51 -0400 | [diff] [blame] | 730 | #Method void* accessTopLayerPixels(SkImageInfo* info, size_t* rowBytes, SkIPoint* origin = nullptr) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 731 | #In Utility |
| 732 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 733 | #Line # returns writable pixel access if available ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 734 | 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] | 735 | can be read directly. The returned address is only valid |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 736 | while Canvas is in scope and unchanged. Any Canvas call or Surface call |
| 737 | may invalidate the returned address and other returned values. |
| 738 | |
| 739 | If pixels are inaccessible, info, rowBytes, and origin are unchanged. |
| 740 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 741 | #Param info storage for writable pixels' Image_Info; may be nullptr ## |
| 742 | #Param rowBytes storage for writable pixels' row bytes; may be nullptr ## |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 743 | #Param origin storage for Canvas top Layer origin, its top-left corner; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 744 | may be nullptr |
| 745 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 746 | |
Cary Clark | a523d2d | 2017-08-30 08:58:10 -0400 | [diff] [blame] | 747 | #Return address of pixels, or nullptr if inaccessible ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 748 | |
| 749 | #Example |
| 750 | void draw(SkCanvas* canvas) { |
| 751 | if (canvas->accessTopLayerPixels(nullptr, nullptr)) { |
| 752 | canvas->clear(SK_ColorRED); |
| 753 | } else { |
| 754 | canvas->clear(SK_ColorBLUE); |
| 755 | } |
| 756 | } |
| 757 | ## |
| 758 | |
| 759 | #Example |
| 760 | #Description |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 761 | Draws "ABC" on the device. Then draws "DEF" in Layer, and reads |
| 762 | Layer to add a large dotted "DEF". Finally blends Layer with the |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 763 | device. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 764 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 765 | 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] | 766 | "DEF" appear only on the CPU. |
| 767 | ## |
| 768 | void draw(SkCanvas* canvas) { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 769 | SkPaint paint; |
| 770 | paint.setTextSize(100); |
| 771 | canvas->drawString("ABC", 20, 160, paint); |
| 772 | SkRect layerBounds = SkRect::MakeXYWH(32, 32, 192, 192); |
| 773 | canvas->saveLayerAlpha(&layerBounds, 128); |
| 774 | canvas->clear(SK_ColorWHITE); |
| 775 | canvas->drawString("DEF", 20, 160, paint); |
| 776 | SkImageInfo imageInfo; |
| 777 | size_t rowBytes; |
| 778 | SkIPoint origin; |
| 779 | uint32_t* access = (uint32_t*) canvas->accessTopLayerPixels(&imageInfo, &rowBytes, &origin); |
| 780 | if (access) { |
| 781 | int h = imageInfo.height(); |
| 782 | int v = imageInfo.width(); |
| 783 | int rowWords = rowBytes / sizeof(uint32_t); |
| 784 | for (int y = 0; y < h; ++y) { |
| 785 | int newY = (y - h / 2) * 2 + h / 2; |
| 786 | if (newY < 0 || newY >= h) { |
| 787 | continue; |
| 788 | } |
| 789 | for (int x = 0; x < v; ++x) { |
| 790 | int newX = (x - v / 2) * 2 + v / 2; |
| 791 | if (newX < 0 || newX >= v) { |
| 792 | continue; |
| 793 | } |
| 794 | if (access[y * rowWords + x] == SK_ColorBLACK) { |
| 795 | access[newY * rowWords + newX] = SK_ColorGRAY; |
| 796 | } |
| 797 | } |
| 798 | } |
| 799 | |
| 800 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 801 | canvas->restore(); |
| 802 | } |
| 803 | ## |
| 804 | |
| 805 | #ToDo there are no callers of this that I can find. Deprecate? ## |
| 806 | #ToDo fiddle should show both CPU and GPU out ## |
| 807 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 808 | #SeeAlso SkImageInfo SkPixmap |
| 809 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 810 | ## |
| 811 | |
| 812 | # ------------------------------------------------------------------------------ |
| 813 | |
| 814 | #Method SkRasterHandleAllocator::Handle accessTopRasterHandle() const |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 815 | #In Utility |
| 816 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 817 | #Line # returns context that tracks Clip and Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 818 | Returns custom context that tracks the Matrix and Clip. |
| 819 | |
| 820 | 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] | 821 | 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] | 822 | SkRasterHandleAllocator::MakeCanvas, which creates a custom canvas with raster storage for |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 823 | the drawing destination. |
| 824 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 825 | #Return context of custom allocation ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 826 | |
| 827 | #Example |
| 828 | #Description |
| 829 | #ToDo ## |
| 830 | ## |
| 831 | #Function |
| 832 | static void DeleteCallback(void*, void* context) { |
| 833 | delete (char*) context; |
| 834 | } |
| 835 | |
| 836 | class CustomAllocator : public SkRasterHandleAllocator { |
| 837 | public: |
| 838 | bool allocHandle(const SkImageInfo& info, Rec* rec) override { |
| 839 | char* context = new char[4]{'s', 'k', 'i', 'a'}; |
| 840 | rec->fReleaseProc = DeleteCallback; |
| 841 | rec->fReleaseCtx = context; |
| 842 | rec->fHandle = context; |
| 843 | rec->fPixels = context; |
| 844 | rec->fRowBytes = 4; |
| 845 | return true; |
| 846 | } |
| 847 | |
| 848 | void updateHandle(Handle handle, const SkMatrix& ctm, const SkIRect& clip_bounds) override { |
| 849 | // apply canvas matrix and clip to custom environment |
| 850 | } |
| 851 | }; |
| 852 | |
| 853 | ## |
| 854 | void draw(SkCanvas* canvas) { |
| 855 | const SkImageInfo info = SkImageInfo::MakeN32Premul(1, 1); |
| 856 | std::unique_ptr<SkCanvas> c2 = |
| 857 | SkRasterHandleAllocator::MakeCanvas(std::unique_ptr<CustomAllocator>( |
| 858 | new CustomAllocator()), info); |
| 859 | char* context = (char*) c2->accessTopRasterHandle(); |
| 860 | SkDebugf("context = %.4s\n", context); |
| 861 | |
| 862 | } |
| 863 | #StdOut |
| 864 | context = skia |
| 865 | ## |
| 866 | #ToDo skstd::make_unique could not be used because def is private -- note to fix in c++14? ## |
| 867 | ## |
| 868 | |
| 869 | #SeeAlso SkRasterHandleAllocator |
| 870 | |
| 871 | ## |
| 872 | |
| 873 | # ------------------------------------------------------------------------------ |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 874 | #Subtopic Pixels |
| 875 | #Populate |
| 876 | #Line # read and write pixel values ## |
| 877 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 878 | |
| 879 | #Method bool peekPixels(SkPixmap* pixmap) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 880 | #In Pixels |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 881 | #Line # returns if Canvas has direct access to its pixels ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 882 | Returns true if Canvas has direct access to its pixels. |
| 883 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 884 | 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] | 885 | is returned from GPU_Surface, returned by SkDocument::beginPage, returned by |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 886 | SkPictureRecorder::beginRecording, or Canvas is the base of a utility class |
Brian Osman | 46fe9c7 | 2018-03-09 15:44:34 -0500 | [diff] [blame] | 887 | like SkDebugCanvas. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 888 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 889 | pixmap is valid only while Canvas is in scope and unchanged. Any |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 890 | Canvas or Surface call may invalidate the pixmap values. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 891 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 892 | #Param pixmap storage for pixel state if pixels are readable; otherwise, ignored ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 893 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 894 | #Return true if Canvas has direct access to pixels ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 895 | |
| 896 | #Example |
| 897 | SkPixmap pixmap; |
| 898 | if (canvas->peekPixels(&pixmap)) { |
| 899 | SkDebugf("width=%d height=%d\n", pixmap.bounds().width(), pixmap.bounds().height()); |
| 900 | } |
| 901 | #StdOut |
| 902 | width=256 height=256 |
| 903 | ## |
| 904 | ## |
| 905 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 906 | #SeeAlso readPixels SkBitmap::peekPixels SkImage::peekPixels SkSurface::peekPixels |
| 907 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 908 | ## |
| 909 | |
| 910 | # ------------------------------------------------------------------------------ |
| 911 | |
| 912 | #Method bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, |
| 913 | int srcX, int srcY) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 914 | #In Pixels |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 915 | #Line # copies and converts rectangle of pixels from Canvas ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 916 | |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 917 | Copies Rect of pixels from Canvas into dstPixels. Matrix and Clip are |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 918 | ignored. |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 919 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 920 | Source Rect corners are (srcX, srcY) and (imageInfo().width(), imageInfo().height()). |
| 921 | Destination Rect corners are (0, 0) and (dstInfo.width(), dstInfo.height()). |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 922 | Copies each readable pixel intersecting both rectangles, without scaling, |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 923 | converting to dstInfo.colorType() and dstInfo.alphaType() if required. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 924 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 925 | Pixels are readable when Device is raster, or backed by a GPU. |
| 926 | Pixels are not readable when SkCanvas is returned by SkDocument::beginPage, |
| 927 | returned by SkPictureRecorder::beginRecording, or Canvas is the base of a utility |
Brian Osman | 46fe9c7 | 2018-03-09 15:44:34 -0500 | [diff] [blame] | 928 | class like SkDebugCanvas. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 929 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 930 | The destination pixel storage must be allocated by the caller. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 931 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 932 | Pixel values are converted only if Color_Type and Alpha_Type |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 933 | do not match. Only pixels within both source and destination rectangles |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 934 | are copied. dstPixels contents outside Rect intersection are unchanged. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 935 | |
| 936 | 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] | 937 | |
| 938 | Does not copy, and returns false if: |
| 939 | |
| 940 | #List |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 941 | # Source and destination rectangles do not intersect. ## |
| 942 | # Canvas pixels could not be converted to dstInfo.colorType() or dstInfo.alphaType(). ## |
| 943 | # Canvas pixels are not readable; for instance, Canvas is document-based. ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 944 | # dstRowBytes is too small to contain one row of pixels. ## |
| 945 | ## |
| 946 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 947 | #Param dstInfo width, height, Color_Type, and Alpha_Type of dstPixels ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 948 | #Param dstPixels storage for pixels; dstInfo.height() times dstRowBytes, or larger ## |
| 949 | #Param dstRowBytes size of one destination row; dstInfo.width() times pixel size, or larger ## |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 950 | #Param srcX offset into readable pixels on x-axis; may be negative ## |
| 951 | #Param srcY offset into readable pixels on y-axis; may be negative ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 952 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 953 | #Return true if pixels were copied ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 954 | |
| 955 | #Example |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 956 | #Width 64 |
| 957 | #Height 64 |
| 958 | #Description |
| 959 | A black circle drawn on a blue background provides an image to copy. |
| 960 | 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] | 961 | The copied quarter circles overdraw the original circle. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 962 | ## |
| 963 | canvas->clear(SK_ColorBLUE); |
| 964 | SkPaint paint; |
| 965 | canvas->drawCircle(32, 32, 28, paint); |
| 966 | SkImageInfo info = SkImageInfo::Make(64, 64, kBGRA_8888_SkColorType, kPremul_SkAlphaType); |
| 967 | sk_sp<SkData> data(SkData::MakeUninitialized(info.minRowBytes() * info.height())); |
| 968 | sk_bzero(data->writable_data(), info.minRowBytes() * info.height()); |
| 969 | for (int x : { 32, -32 } ) { |
| 970 | for (int y : { 32, -32 } ) { |
| 971 | canvas->readPixels(info, data->writable_data(), info.minRowBytes(), x, y); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 972 | } |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 973 | } |
| 974 | sk_sp<SkImage> image = SkImage::MakeRasterData(info, data, info.minRowBytes()); |
| 975 | canvas->drawImage(image, 0, 0); |
| 976 | ## |
| 977 | |
| 978 | #Example |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 979 | #Description |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 980 | Canvas returned by Raster_Surface has Premultiplied pixel values. |
| 981 | clear() takes Unpremultiplied input with Color_Alpha equal 0x80 |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 982 | and RGB equal 0x55, 0xAA, 0xFF. RGB is multiplied by Color_Alpha |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 983 | to generate Premultiplied value 0x802B5580. readPixels converts pixel back |
| 984 | to Unpremultiplied value 0x8056A9FF, introducing error. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 985 | ## |
| 986 | canvas->clear(0x8055aaff); |
| 987 | for (SkAlphaType alphaType : { kPremul_SkAlphaType, kUnpremul_SkAlphaType } ) { |
| 988 | uint32_t pixel = 0; |
| 989 | SkImageInfo info = SkImageInfo::Make(1, 1, kBGRA_8888_SkColorType, alphaType); |
| 990 | if (canvas->readPixels(info, &pixel, 4, 0, 0)) { |
| 991 | SkDebugf("pixel = %08x\n", pixel); |
| 992 | } |
| 993 | } |
| 994 | |
| 995 | #StdOut |
| 996 | pixel = 802b5580 |
| 997 | pixel = 8056a9ff |
| 998 | ## |
| 999 | ## |
| 1000 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1001 | #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] | 1002 | |
| 1003 | ## |
| 1004 | |
| 1005 | # ------------------------------------------------------------------------------ |
| 1006 | |
| 1007 | #Method bool readPixels(const SkPixmap& pixmap, int srcX, int srcY) |
| 1008 | |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1009 | Copies Rect of pixels from Canvas into pixmap. Matrix and Clip are |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1010 | ignored. |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1011 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1012 | Source Rect corners are (srcX, srcY) and (imageInfo().width(), imageInfo().height()). |
| 1013 | Destination Rect corners are (0, 0) and (pixmap.width(), pixmap.height()). |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1014 | Copies each readable pixel intersecting both rectangles, without scaling, |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1015 | converting to pixmap.colorType() and pixmap.alphaType() if required. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1016 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1017 | Pixels are readable when Device is raster, or backed by a GPU. |
| 1018 | Pixels are not readable when SkCanvas is returned by SkDocument::beginPage, |
| 1019 | returned by SkPictureRecorder::beginRecording, or Canvas is the base of a utility |
Brian Osman | 46fe9c7 | 2018-03-09 15:44:34 -0500 | [diff] [blame] | 1020 | class like SkDebugCanvas. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1021 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1022 | Caller must allocate pixel storage in pixmap if needed. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1023 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 1024 | Pixel values are converted only if Color_Type and Alpha_Type |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1025 | do not match. Only pixels within both source and destination Rects |
| 1026 | are copied. pixmap pixels contents outside Rect intersection are unchanged. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1027 | |
| 1028 | 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] | 1029 | |
| 1030 | Does not copy, and returns false if: |
| 1031 | |
| 1032 | #List |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1033 | # Source and destination rectangles do not intersect. ## |
| 1034 | # Canvas pixels could not be converted to pixmap.colorType() or pixmap.alphaType(). ## |
| 1035 | # Canvas pixels are not readable; for instance, Canvas is document-based. ## |
| 1036 | # Pixmap pixels could not be allocated. ## |
| 1037 | # pixmap.rowBytes() is too small to contain one row of pixels. ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1038 | ## |
| 1039 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1040 | #Param pixmap storage for pixels copied from Canvas ## |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 1041 | #Param srcX offset into readable pixels on x-axis; may be negative ## |
| 1042 | #Param srcY offset into readable pixels on y-axis; may be negative ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1043 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1044 | #Return true if pixels were copied ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1045 | |
| 1046 | #Example |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1047 | #Description |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1048 | clear() takes Unpremultiplied input with Color_Alpha equal 0x80 |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 1049 | and RGB equal 0x55, 0xAA, 0xFF. RGB is multiplied by Color_Alpha |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1050 | to generate Premultiplied value 0x802B5580. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1051 | ## |
| 1052 | void draw(SkCanvas* canvas) { |
| 1053 | canvas->clear(0x8055aaff); |
| 1054 | uint32_t pixels[1] = { 0 }; |
| 1055 | SkPixmap pixmap(SkImageInfo::MakeN32Premul(1, 1), pixels, 4); |
| 1056 | canvas->readPixels(pixmap, 0, 0); |
| 1057 | SkDebugf("pixel = %08x\n", pixels[0]); |
| 1058 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1059 | #StdOut |
| 1060 | pixel = 802b5580 |
| 1061 | ## |
| 1062 | ## |
| 1063 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1064 | #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] | 1065 | |
| 1066 | ## |
| 1067 | |
| 1068 | # ------------------------------------------------------------------------------ |
| 1069 | |
| 1070 | #Method bool readPixels(const SkBitmap& bitmap, int srcX, int srcY) |
| 1071 | |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1072 | Copies Rect of pixels from Canvas into bitmap. Matrix and Clip are |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1073 | ignored. |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1074 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1075 | Source Rect corners are (srcX, srcY) and (imageInfo().width(), imageInfo().height()). |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1076 | Destination Rect corners are (0, 0) and (bitmap.width(), bitmap.height()). |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1077 | Copies each readable pixel intersecting both rectangles, without scaling, |
| 1078 | converting to bitmap.colorType() and bitmap.alphaType() if required. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1079 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1080 | Pixels are readable when Device is raster, or backed by a GPU. |
| 1081 | Pixels are not readable when SkCanvas is returned by SkDocument::beginPage, |
| 1082 | returned by SkPictureRecorder::beginRecording, or Canvas is the base of a utility |
Brian Osman | 46fe9c7 | 2018-03-09 15:44:34 -0500 | [diff] [blame] | 1083 | class like SkDebugCanvas. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1084 | |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1085 | Caller must allocate pixel storage in bitmap if needed. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1086 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 1087 | Bitmap values are converted only if Color_Type and Alpha_Type |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1088 | do not match. Only pixels within both source and destination rectangles |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1089 | are copied. Bitmap pixels outside Rect intersection are unchanged. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1090 | |
| 1091 | 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] | 1092 | |
| 1093 | Does not copy, and returns false if: |
| 1094 | |
| 1095 | #List |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1096 | # Source and destination rectangles do not intersect. ## |
| 1097 | # Canvas pixels could not be converted to bitmap.colorType() or bitmap.alphaType(). ## |
| 1098 | # Canvas pixels are not readable; for instance, Canvas is document-based. ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1099 | # bitmap pixels could not be allocated. ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1100 | # bitmap.rowBytes() is too small to contain one row of pixels. ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1101 | ## |
| 1102 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1103 | #Param bitmap storage for pixels copied from Canvas ## |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 1104 | #Param srcX offset into readable pixels on x-axis; may be negative ## |
| 1105 | #Param srcY offset into readable pixels on y-axis; may be negative ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1106 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1107 | #Return true if pixels were copied ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1108 | |
| 1109 | #Example |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1110 | #Description |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1111 | clear() takes Unpremultiplied input with Color_Alpha equal 0x80 |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 1112 | and RGB equal 0x55, 0xAA, 0xFF. RGB is multiplied by Color_Alpha |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1113 | to generate Premultiplied value 0x802B5580. |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1114 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1115 | void draw(SkCanvas* canvas) { |
| 1116 | canvas->clear(0x8055aaff); |
| 1117 | SkBitmap bitmap; |
| 1118 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(1, 1)); |
| 1119 | canvas->readPixels(bitmap, 0, 0); |
| 1120 | SkDebugf("pixel = %08x\n", bitmap.getAddr32(0, 0)[0]); |
| 1121 | } |
| 1122 | #StdOut |
| 1123 | pixel = 802b5580 |
| 1124 | ## |
| 1125 | ## |
| 1126 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1127 | #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] | 1128 | |
| 1129 | ## |
| 1130 | |
| 1131 | # ------------------------------------------------------------------------------ |
| 1132 | |
| 1133 | #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] | 1134 | #In Pixels |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1135 | #Line # copies and converts rectangle of pixels to Canvas ## |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1136 | Copies Rect from pixels to Canvas. Matrix and Clip are ignored. |
| 1137 | Source Rect corners are (0, 0) and (info.width(), info.height()). |
| 1138 | Destination Rect corners are (x, y) and |
| 1139 | (imageInfo().width(), imageInfo().height()). |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1140 | |
| 1141 | Copies each readable pixel intersecting both rectangles, without scaling, |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1142 | converting to imageInfo().colorType() and imageInfo().alphaType() if required. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1143 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1144 | Pixels are writable when Device is raster, or backed by a GPU. |
| 1145 | Pixels are not writable when SkCanvas is returned by SkDocument::beginPage, |
| 1146 | returned by SkPictureRecorder::beginRecording, or Canvas is the base of a utility |
Brian Osman | 46fe9c7 | 2018-03-09 15:44:34 -0500 | [diff] [blame] | 1147 | class like SkDebugCanvas. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1148 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 1149 | Pixel values are converted only if Color_Type and Alpha_Type |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1150 | do not match. Only pixels within both source and destination rectangles |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1151 | are copied. Canvas pixels outside Rect intersection are unchanged. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1152 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1153 | Pass negative values for x or y to offset pixels to the left or |
| 1154 | above Canvas pixels. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1155 | |
| 1156 | Does not copy, and returns false if: |
| 1157 | |
| 1158 | #List |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1159 | # Source and destination rectangles do not intersect. ## |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1160 | # pixels could not be converted to Canvas imageInfo().colorType() or |
| 1161 | imageInfo().alphaType(). ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1162 | # Canvas pixels are not writable; for instance, Canvas is document-based. ## |
| 1163 | # rowBytes is too small to contain one row of pixels. ## |
| 1164 | ## |
| 1165 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 1166 | #Param info width, height, Color_Type, and Alpha_Type of pixels ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1167 | #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] | 1168 | #Param rowBytes size of one row of pixels; info.width() times pixel size, or larger ## |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 1169 | #Param x offset into Canvas writable pixels on x-axis; may be negative ## |
| 1170 | #Param y offset into Canvas writable pixels on y-axis; may be negative ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1171 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1172 | #Return true if pixels were written to Canvas ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1173 | |
| 1174 | #Example |
| 1175 | SkImageInfo imageInfo = SkImageInfo::MakeN32(256, 1, kPremul_SkAlphaType); |
| 1176 | for (int y = 0; y < 256; ++y) { |
| 1177 | uint32_t pixels[256]; |
| 1178 | for (int x = 0; x < 256; ++x) { |
| 1179 | pixels[x] = SkColorSetARGB(x, x + y, x, x - y); |
| 1180 | } |
| 1181 | canvas->writePixels(imageInfo, &pixels, sizeof(pixels), 0, y); |
| 1182 | } |
| 1183 | ## |
| 1184 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1185 | #SeeAlso readPixels drawBitmap drawImage SkBitmap::writePixels |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1186 | |
| 1187 | ## |
| 1188 | |
| 1189 | # ------------------------------------------------------------------------------ |
| 1190 | |
| 1191 | #Method bool writePixels(const SkBitmap& bitmap, int x, int y) |
| 1192 | |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1193 | Copies Rect from pixels to Canvas. Matrix and Clip are ignored. |
| 1194 | Source Rect corners are (0, 0) and (bitmap.width(), bitmap.height()). |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1195 | |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1196 | Destination Rect corners are (x, y) and |
| 1197 | (imageInfo().width(), imageInfo().height()). |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 1198 | |
| 1199 | Copies each readable pixel intersecting both rectangles, without scaling, |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1200 | converting to imageInfo().colorType() and imageInfo().alphaType() if required. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1201 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1202 | Pixels are writable when Device is raster, or backed by a GPU. |
| 1203 | Pixels are not writable when SkCanvas is returned by SkDocument::beginPage, |
| 1204 | returned by SkPictureRecorder::beginRecording, or Canvas is the base of a utility |
Brian Osman | 46fe9c7 | 2018-03-09 15:44:34 -0500 | [diff] [blame] | 1205 | class like SkDebugCanvas. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1206 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 1207 | Pixel values are converted only if Color_Type and Alpha_Type |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1208 | do not match. Only pixels within both source and destination rectangles |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 1209 | are copied. Canvas pixels outside Rect intersection are unchanged. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1210 | |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1211 | Pass negative values for x or y to offset pixels to the left or |
| 1212 | above Canvas pixels. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1213 | |
| 1214 | Does not copy, and returns false if: |
| 1215 | |
| 1216 | #List |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1217 | # Source and destination rectangles do not intersect. ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1218 | # bitmap does not have allocated pixels. ## |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1219 | # bitmap pixels could not be converted to Canvas imageInfo().colorType() or |
| 1220 | imageInfo().alphaType(). ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1221 | # Canvas pixels are not writable; for instance, Canvas is document based. ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1222 | # bitmap pixels are inaccessible; for instance, bitmap wraps a texture. ## |
| 1223 | ## |
| 1224 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1225 | #Param bitmap contains pixels copied to Canvas ## |
Cary Clark | f05bdda | 2017-08-24 12:59:48 -0400 | [diff] [blame] | 1226 | #Param x offset into Canvas writable pixels in x; may be negative ## |
| 1227 | #Param y offset into Canvas writable pixels in y; may be negative ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1228 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1229 | #Return true if pixels were written to Canvas ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1230 | |
| 1231 | #Example |
| 1232 | void draw(SkCanvas* canvas) { |
| 1233 | SkImageInfo imageInfo = SkImageInfo::MakeN32Premul(2, 2); |
| 1234 | SkBitmap bitmap; |
| 1235 | bitmap.setInfo(imageInfo); |
| 1236 | uint32_t pixels[4]; |
| 1237 | bitmap.setPixels(pixels); |
| 1238 | for (int y = 0; y < 256; y += 2) { |
| 1239 | for (int x = 0; x < 256; x += 2) { |
| 1240 | pixels[0] = SkColorSetRGB(x, y, x | y); |
| 1241 | pixels[1] = SkColorSetRGB(x ^ y, y, x); |
| 1242 | pixels[2] = SkColorSetRGB(x, x & y, y); |
| 1243 | pixels[3] = SkColorSetRGB(~x, ~y, x); |
| 1244 | canvas->writePixels(bitmap, x, y); |
| 1245 | } |
| 1246 | } |
| 1247 | } |
| 1248 | ## |
| 1249 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1250 | #SeeAlso readPixels drawBitmap drawImage SkBitmap::writePixels |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1251 | |
| 1252 | ## |
| 1253 | |
| 1254 | # ------------------------------------------------------------------------------ |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 1255 | #Subtopic State_Stack |
| 1256 | #Line # stack of state for hierarchical drawing ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1257 | |
| 1258 | Canvas maintains a stack of state that allows hierarchical drawing, commonly used |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1259 | to implement windows and views. The initial state has an identity matrix and and |
| 1260 | an infinite clip. Even with a wide-open clip, drawing is constrained by the |
| 1261 | bounds of the Canvas Surface or Device. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1262 | |
Cary Clark | 939fd6c | 2018-07-12 08:40:13 -0400 | [diff] [blame] | 1263 | Canvas savable state consists of Clip and Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1264 | Clip describes the area that may be drawn to. |
| 1265 | Matrix transforms the geometry. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1266 | |
| 1267 | save(), saveLayer, saveLayerPreserveLCDTextRequests, and saveLayerAlpha |
| 1268 | save state and return the depth of the stack. |
| 1269 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1270 | restore(), restoreToCount, and ~SkCanvas() revert state to its value when saved. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1271 | |
| 1272 | Each state on the stack intersects Clip with the previous Clip, |
| 1273 | and concatenates Matrix with the previous Matrix. |
| 1274 | The intersected Clip makes the drawing area the same or smaller; |
| 1275 | the concatenated Matrix may move the origin and potentially scale or rotate |
| 1276 | the coordinate space. |
| 1277 | |
| 1278 | Canvas does not require balancing the state stack but it is a good idea |
| 1279 | to do so. Calling save() without restore() will eventually cause Skia to fail; |
| 1280 | mismatched save() and restore() create hard to find bugs. |
| 1281 | |
| 1282 | It is not possible to use state to draw outside of the clip defined by the |
| 1283 | previous state. |
| 1284 | |
| 1285 | #Example |
| 1286 | #Description |
| 1287 | Draw to ever smaller clips; then restore drawing to full canvas. |
| 1288 | Note that the second clipRect is not permitted to enlarge Clip. |
| 1289 | ## |
| 1290 | #Height 160 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1291 | void draw(SkCanvas* canvas) { |
| 1292 | SkPaint paint; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1293 | canvas->save(); // records stack depth to restore |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1294 | canvas->clipRect(SkRect::MakeWH(100, 100)); // constrains drawing to clip |
| 1295 | canvas->clear(SK_ColorRED); // draws to limit of clip |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1296 | canvas->save(); // records stack depth to restore |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1297 | canvas->clipRect(SkRect::MakeWH(50, 150)); // Rect below 100 is ignored |
| 1298 | canvas->clear(SK_ColorBLUE); // draws to smaller clip |
| 1299 | canvas->restore(); // enlarges clip |
| 1300 | canvas->drawLine(20, 20, 150, 150, paint); // line below 100 is not drawn |
| 1301 | canvas->restore(); // enlarges clip |
| 1302 | canvas->drawLine(150, 20, 50, 120, paint); // line below 100 is drawn |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1303 | } |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1304 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1305 | |
| 1306 | Each Clip uses the current Matrix for its coordinates. |
| 1307 | |
| 1308 | #Example |
| 1309 | #Description |
| 1310 | While clipRect is given the same rectangle twice, Matrix makes the second |
| 1311 | clipRect draw at half the size of the first. |
| 1312 | ## |
| 1313 | #Height 128 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1314 | void draw(SkCanvas* canvas) { |
| 1315 | canvas->clipRect(SkRect::MakeWH(100, 100)); |
| 1316 | canvas->clear(SK_ColorRED); |
| 1317 | canvas->scale(.5, .5); |
| 1318 | canvas->clipRect(SkRect::MakeWH(100, 100)); |
| 1319 | canvas->clear(SK_ColorBLUE); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1320 | } |
| 1321 | ## |
| 1322 | |
| 1323 | #SeeAlso save() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha restore() restoreToCount |
| 1324 | |
| 1325 | #Method int save() |
| 1326 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1327 | #In State_Stack |
| 1328 | #Line # saves Clip and Matrix on stack ## |
Cary Clark | 939fd6c | 2018-07-12 08:40:13 -0400 | [diff] [blame] | 1329 | Saves Matrix and Clip. |
| 1330 | Calling restore() discards changes to Matrix and Clip, |
| 1331 | restoring the Matrix and Clip to their state when save() was called. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1332 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1333 | Matrix may be changed by translate(), scale(), rotate(), skew(), concat(), setMatrix, |
| 1334 | and resetMatrix. Clip may be changed by clipRect, clipRRect, clipPath, clipRegion. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1335 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1336 | Saved Canvas state is put on a stack; multiple calls to save() should be balance |
| 1337 | by an equal number of calls to restore(). |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1338 | |
| 1339 | Call restoreToCount with result to restore this and subsequent saves. |
| 1340 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1341 | #Return depth of saved stack ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1342 | |
| 1343 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1344 | #Description |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1345 | The black square is translated 50 pixels down and to the right. |
| 1346 | Restoring Canvas state removes translate() from Canvas stack; |
| 1347 | the red square is not translated, and is drawn at the origin. |
| 1348 | ## |
| 1349 | #Height 100 |
| 1350 | void draw(SkCanvas* canvas) { |
| 1351 | SkPaint paint; |
| 1352 | SkRect rect = { 0, 0, 25, 25 }; |
| 1353 | canvas->drawRect(rect, paint); |
| 1354 | canvas->save(); |
| 1355 | canvas->translate(50, 50); |
| 1356 | canvas->drawRect(rect, paint); |
| 1357 | canvas->restore(); |
| 1358 | paint.setColor(SK_ColorRED); |
| 1359 | canvas->drawRect(rect, paint); |
| 1360 | } |
| 1361 | ## |
| 1362 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1363 | #SeeAlso saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha restore() restoreToCount |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1364 | |
| 1365 | ## |
| 1366 | |
| 1367 | # ------------------------------------------------------------------------------ |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1368 | |
| 1369 | #Method void restore() |
| 1370 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1371 | #In State_Stack |
| 1372 | #Line # restores changes to Clip and Matrix, pops save stack ## |
Cary Clark | 939fd6c | 2018-07-12 08:40:13 -0400 | [diff] [blame] | 1373 | Removes changes to Matrix and Clip since Canvas state was |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1374 | last saved. The state is removed from the stack. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1375 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1376 | Does nothing if the stack is empty. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1377 | |
| 1378 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1379 | void draw(SkCanvas* canvas) { |
| 1380 | SkCanvas simple; |
| 1381 | SkDebugf("depth = %d\n", simple.getSaveCount()); |
| 1382 | simple.restore(); |
| 1383 | SkDebugf("depth = %d\n", simple.getSaveCount()); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1384 | } |
| 1385 | ## |
| 1386 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1387 | #SeeAlso save() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha restoreToCount |
| 1388 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1389 | ## |
| 1390 | |
| 1391 | # ------------------------------------------------------------------------------ |
| 1392 | |
| 1393 | #Method int getSaveCount() const |
| 1394 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1395 | #In State_Stack |
| 1396 | #Line # returns depth of stack containing Clip and Matrix ## |
Cary Clark | 939fd6c | 2018-07-12 08:40:13 -0400 | [diff] [blame] | 1397 | Returns the number of saved states, each containing: Matrix and Clip. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1398 | 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] | 1399 | The save count of a new canvas is one. |
| 1400 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1401 | #Return depth of save state stack ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1402 | |
| 1403 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1404 | void draw(SkCanvas* canvas) { |
| 1405 | SkCanvas simple; |
| 1406 | SkDebugf("depth = %d\n", simple.getSaveCount()); |
| 1407 | simple.save(); |
| 1408 | SkDebugf("depth = %d\n", simple.getSaveCount()); |
| 1409 | simple.restore(); |
| 1410 | SkDebugf("depth = %d\n", simple.getSaveCount()); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1411 | } |
| 1412 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1413 | depth = 1 |
| 1414 | depth = 2 |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1415 | depth = 1 |
| 1416 | ## |
| 1417 | ## |
| 1418 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1419 | #SeeAlso save() restore() restoreToCount |
| 1420 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1421 | ## |
| 1422 | |
| 1423 | # ------------------------------------------------------------------------------ |
| 1424 | |
| 1425 | #Method void restoreToCount(int saveCount) |
| 1426 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1427 | #In State_Stack |
| 1428 | #Line # restores changes to Clip and Matrix to given depth ## |
Cary Clark | 939fd6c | 2018-07-12 08:40:13 -0400 | [diff] [blame] | 1429 | Restores state to Matrix and Clip values when save(), saveLayer, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1430 | saveLayerPreserveLCDTextRequests, or saveLayerAlpha returned saveCount. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1431 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1432 | Does nothing if saveCount is greater than state stack count. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1433 | Restores state to initial values if saveCount is less than or equal to one. |
| 1434 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1435 | #Param saveCount depth of state stack to restore ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1436 | |
| 1437 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1438 | void draw(SkCanvas* canvas) { |
| 1439 | SkDebugf("depth = %d\n", canvas->getSaveCount()); |
| 1440 | canvas->save(); |
| 1441 | canvas->save(); |
| 1442 | SkDebugf("depth = %d\n", canvas->getSaveCount()); |
| 1443 | canvas->restoreToCount(0); |
| 1444 | SkDebugf("depth = %d\n", canvas->getSaveCount()); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1445 | } |
| 1446 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 1447 | depth = 1 |
| 1448 | depth = 3 |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1449 | depth = 1 |
| 1450 | ## |
| 1451 | ## |
| 1452 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1453 | #SeeAlso restore() getSaveCount save() |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1454 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1455 | ## |
| 1456 | |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 1457 | #Subtopic State_Stack ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 1458 | |
| 1459 | # ------------------------------------------------------------------------------ |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1460 | |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 1461 | #Subtopic Layer |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 1462 | #Substitute layer |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1463 | #Alias Layers |
Cary Clark | 137b874 | 2018-05-30 09:21:49 -0400 | [diff] [blame] | 1464 | #Substitute layers |
| 1465 | ## |
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 | 939fd6c | 2018-07-12 08:40:13 -0400 | [diff] [blame] | 1482 | Saves Matrix and Clip, and allocates a Bitmap for subsequent drawing. |
| 1483 | Calling restore() discards changes to Matrix and Clip, and draws the Bitmap. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1484 | |
| 1485 | Matrix may be changed by translate(), scale(), rotate(), skew(), concat(), |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1486 | setMatrix, and resetMatrix. Clip may be changed by clipRect, clipRRect, |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1487 | clipPath, clipRegion. |
| 1488 | |
| 1489 | Rect bounds suggests but does not define the Bitmap size. To clip drawing to |
| 1490 | a specific rectangle, use clipRect. |
| 1491 | |
| 1492 | Optional Paint paint applies Color_Alpha, Color_Filter, Image_Filter, and |
| 1493 | Blend_Mode when restore() is called. |
| 1494 | |
| 1495 | Call restoreToCount with returned value to restore this and subsequent saves. |
| 1496 | |
| 1497 | #Param bounds hint to limit the size of the Layer; may be nullptr ## |
| 1498 | #Param paint graphics state for Layer; may be nullptr ## |
| 1499 | |
| 1500 | #Return depth of saved stack ## |
| 1501 | |
| 1502 | #Example |
| 1503 | #Description |
| 1504 | Rectangles are blurred by Image_Filter when restore() draws Layer to main |
| 1505 | Canvas. |
| 1506 | ## |
| 1507 | #Height 128 |
Cary Clark | 81abc43 | 2018-06-25 16:30:08 -0400 | [diff] [blame] | 1508 | #Function |
| 1509 | ###$ |
| 1510 | #include "SkBlurImageFilter.h" |
| 1511 | $$$# |
| 1512 | ## |
| 1513 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1514 | void draw(SkCanvas* canvas) { |
| 1515 | SkPaint paint, blur; |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1516 | blur.setImageFilter(SkBlurImageFilter::Make(3, 3, nullptr)); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1517 | canvas->saveLayer(nullptr, &blur); |
| 1518 | SkRect rect = { 25, 25, 50, 50}; |
| 1519 | canvas->drawRect(rect, paint); |
| 1520 | canvas->translate(50, 50); |
| 1521 | paint.setColor(SK_ColorRED); |
| 1522 | canvas->drawRect(rect, paint); |
| 1523 | canvas->restore(); |
| 1524 | } |
| 1525 | ## |
| 1526 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1527 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha SaveLayerRec |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1528 | |
| 1529 | ## |
| 1530 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1531 | #Method int saveLayer(const SkRect& bounds, const SkPaint* paint) |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1532 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1533 | #In Layer |
Cary Clark | 939fd6c | 2018-07-12 08:40:13 -0400 | [diff] [blame] | 1534 | Saves Matrix and Clip, and allocates a Bitmap for subsequent drawing. |
| 1535 | Calling restore() discards changes to Matrix and Clip, and draws the Bitmap. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1536 | |
| 1537 | Matrix may be changed by translate(), scale(), rotate(), skew(), concat(), |
| 1538 | setMatrix, and resetMatrix. Clip may be changed by clipRect, clipRRect, |
| 1539 | clipPath, clipRegion. |
| 1540 | |
| 1541 | Rect bounds suggests but does not define the Layer size. To clip drawing to |
| 1542 | a specific rectangle, use clipRect. |
| 1543 | |
| 1544 | Optional Paint paint applies Color_Alpha, Color_Filter, Image_Filter, and |
| 1545 | Blend_Mode when restore() is called. |
| 1546 | |
| 1547 | Call restoreToCount with returned value to restore this and subsequent saves. |
| 1548 | |
| 1549 | #Param bounds hint to limit the size of Layer; may be nullptr ## |
| 1550 | #Param paint graphics state for Layer; may be nullptr ## |
| 1551 | |
| 1552 | #Return depth of saved stack ## |
| 1553 | |
| 1554 | #Example |
| 1555 | #Description |
| 1556 | 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] | 1557 | The red rectangle is clipped; it does not fully fit on Layer. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1558 | Image_Filter blurs past edge of Layer so red rectangle is blurred on all sides. |
| 1559 | ## |
| 1560 | #Height 128 |
Cary Clark | 81abc43 | 2018-06-25 16:30:08 -0400 | [diff] [blame] | 1561 | #Function |
| 1562 | ###$ |
| 1563 | #include "SkBlurImageFilter.h" |
| 1564 | $$$# |
| 1565 | ## |
| 1566 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1567 | void draw(SkCanvas* canvas) { |
| 1568 | SkPaint paint, blur; |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1569 | blur.setImageFilter(SkBlurImageFilter::Make(3, 3, nullptr)); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1570 | canvas->saveLayer(SkRect::MakeWH(90, 90), &blur); |
| 1571 | SkRect rect = { 25, 25, 50, 50}; |
| 1572 | canvas->drawRect(rect, paint); |
| 1573 | canvas->translate(50, 50); |
| 1574 | paint.setColor(SK_ColorRED); |
| 1575 | canvas->drawRect(rect, paint); |
| 1576 | canvas->restore(); |
| 1577 | } |
| 1578 | ## |
| 1579 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1580 | #SeeAlso save() restore() saveLayerPreserveLCDTextRequests saveLayerAlpha SaveLayerRec |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1581 | |
| 1582 | ## |
| 1583 | |
| 1584 | #Method int saveLayerPreserveLCDTextRequests(const SkRect* bounds, const SkPaint* paint) |
| 1585 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1586 | #In Layer |
| 1587 | #Line # saves Clip and Matrix on stack; creates Layer for LCD text ## |
Cary Clark | 939fd6c | 2018-07-12 08:40:13 -0400 | [diff] [blame] | 1588 | Saves Matrix and Clip, and allocates a Bitmap for subsequent drawing. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1589 | LCD_Text is preserved when the Layer is drawn to the prior Layer. |
| 1590 | |
Cary Clark | 939fd6c | 2018-07-12 08:40:13 -0400 | [diff] [blame] | 1591 | Calling restore() discards changes to Matrix and Clip, and draws Layer. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1592 | |
| 1593 | Matrix may be changed by translate(), scale(), rotate(), skew(), concat(), |
| 1594 | setMatrix, and resetMatrix. Clip may be changed by clipRect, clipRRect, |
| 1595 | clipPath, clipRegion. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1596 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1597 | Rect bounds suggests but does not define the Layer size. To clip drawing to |
| 1598 | a specific rectangle, use clipRect. |
| 1599 | |
| 1600 | Optional Paint paint applies Color_Alpha, Color_Filter, Image_Filter, and |
| 1601 | Blend_Mode when restore() is called. |
| 1602 | |
| 1603 | Call restoreToCount with returned value to restore this and subsequent saves. |
| 1604 | |
| 1605 | Draw text on an opaque background so that LCD_Text blends correctly with the |
| 1606 | 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] | 1607 | incorrect blending. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1608 | |
| 1609 | #Param bounds hint to limit the size of Layer; may be nullptr ## |
| 1610 | #Param paint graphics state for Layer; may be nullptr ## |
| 1611 | |
| 1612 | #Return depth of saved stack ## |
| 1613 | |
| 1614 | #Example |
| 1615 | SkPaint paint; |
| 1616 | paint.setAntiAlias(true); |
| 1617 | paint.setLCDRenderText(true); |
| 1618 | paint.setTextSize(20); |
| 1619 | for (auto preserve : { false, true } ) { |
| 1620 | preserve ? canvas->saveLayerPreserveLCDTextRequests(nullptr, nullptr) |
| 1621 | : canvas->saveLayer(nullptr, nullptr); |
| 1622 | SkPaint p; |
| 1623 | p.setColor(SK_ColorWHITE); |
| 1624 | // Comment out the next line to draw on a non-opaque background. |
| 1625 | canvas->drawRect(SkRect::MakeLTRB(25, 40, 200, 70), p); |
| 1626 | canvas->drawString("Hamburgefons", 30, 60, paint); |
| 1627 | |
| 1628 | p.setColor(0xFFCCCCCC); |
| 1629 | canvas->drawRect(SkRect::MakeLTRB(25, 70, 200, 100), p); |
| 1630 | canvas->drawString("Hamburgefons", 30, 90, paint); |
| 1631 | |
| 1632 | canvas->restore(); |
| 1633 | canvas->translate(0, 80); |
| 1634 | } |
| 1635 | ## |
| 1636 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1637 | #SeeAlso save() restore() saveLayer saveLayerAlpha SaveLayerRec |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1638 | |
| 1639 | ## |
| 1640 | |
| 1641 | #Method int saveLayerAlpha(const SkRect* bounds, U8CPU alpha) |
| 1642 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1643 | #In Layer |
| 1644 | #Line # saves Clip and Matrix on stack; creates Layer; sets opacity ## |
Cary Clark | 939fd6c | 2018-07-12 08:40:13 -0400 | [diff] [blame] | 1645 | Saves Matrix and Clip, and allocates Bitmap for subsequent drawing. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1646 | |
Cary Clark | 939fd6c | 2018-07-12 08:40:13 -0400 | [diff] [blame] | 1647 | Calling restore() discards changes to Matrix and Clip, |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1648 | and blends Layer with alpha opacity onto prior Layer. |
| 1649 | |
| 1650 | Matrix may be changed by translate(), scale(), rotate(), skew(), concat(), |
| 1651 | setMatrix, and resetMatrix. Clip may be changed by clipRect, clipRRect, |
| 1652 | clipPath, clipRegion. |
| 1653 | |
| 1654 | Rect bounds suggests but does not define Layer size. To clip drawing to |
| 1655 | a specific rectangle, use clipRect. |
| 1656 | |
| 1657 | alpha of zero is fully transparent, 255 is fully opaque. |
| 1658 | |
| 1659 | Call restoreToCount with returned value to restore this and subsequent saves. |
| 1660 | |
| 1661 | #Param bounds hint to limit the size of Layer; may be nullptr ## |
| 1662 | #Param alpha opacity of Layer ## |
| 1663 | |
| 1664 | #Return depth of saved stack ## |
| 1665 | |
| 1666 | #Example |
| 1667 | SkPaint paint; |
| 1668 | paint.setColor(SK_ColorRED); |
| 1669 | canvas->drawCircle(50, 50, 50, paint); |
| 1670 | canvas->saveLayerAlpha(nullptr, 128); |
| 1671 | paint.setColor(SK_ColorBLUE); |
| 1672 | canvas->drawCircle(100, 50, 50, paint); |
| 1673 | paint.setColor(SK_ColorGREEN); |
| 1674 | paint.setAlpha(128); |
| 1675 | canvas->drawCircle(75, 90, 50, paint); |
| 1676 | canvas->restore(); |
| 1677 | ## |
| 1678 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1679 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests SaveLayerRec |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1680 | |
| 1681 | ## |
| 1682 | |
Cary Clark | d98f78c | 2018-04-26 08:32:37 -0400 | [diff] [blame] | 1683 | #Enum SaveLayerFlagsSet |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 1684 | #Line # sets SaveLayerRec options ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1685 | #Code |
Cary Clark | d98f78c | 2018-04-26 08:32:37 -0400 | [diff] [blame] | 1686 | enum SaveLayerFlagsSet { |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1687 | kPreserveLCDText_SaveLayerFlag = 1 << 1, |
| 1688 | kInitWithPrevious_SaveLayerFlag = 1 << 2, |
Mike Reed | 910ca0f | 2018-04-25 13:04:05 -0400 | [diff] [blame] | 1689 | kMaskAgainstCoverage_EXPERIMENTAL_DONT_USE_SaveLayerFlag = 1 << 3, |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1690 | kDontClipToLayer_Legacy_SaveLayerFlag = kDontClipToLayer_PrivateSaveLayerFlag, |
| 1691 | }; |
Cary Clark | d98f78c | 2018-04-26 08:32:37 -0400 | [diff] [blame] | 1692 | |
| 1693 | typedef uint32_t SaveLayerFlags; |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1694 | ## |
| 1695 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1696 | |
| 1697 | #Typedef uint32_t SaveLayerFlags |
| 1698 | #Line # options for SaveLayerRec ## |
Cary Clark | 137b874 | 2018-05-30 09:21:49 -0400 | [diff] [blame] | 1699 | ## |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1700 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1701 | SaveLayerFlags provides options that may be used in any combination in SaveLayerRec, |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1702 | defining how Layer allocated by saveLayer operates. It may be set to zero, |
| 1703 | kPreserveLCDText_SaveLayerFlag, kInitWithPrevious_SaveLayerFlag, or both flags. |
| 1704 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1705 | #Const kPreserveLCDText_SaveLayerFlag 2 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1706 | #Line # creates Layer for LCD text ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1707 | Creates Layer for LCD text. Flag is ignored if Layer Paint contains |
| 1708 | Image_Filter or Color_Filter. |
| 1709 | ## |
| 1710 | |
| 1711 | #Const kInitWithPrevious_SaveLayerFlag 4 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1712 | #Line # initializes with previous contents ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1713 | Initializes Layer with the contents of the previous Layer. |
| 1714 | ## |
| 1715 | |
Mike Reed | 910ca0f | 2018-04-25 13:04:05 -0400 | [diff] [blame] | 1716 | #Const kMaskAgainstCoverage_EXPERIMENTAL_DONT_USE_SaveLayerFlag 8 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1717 | #Experimental do not use |
Mike Reed | 910ca0f | 2018-04-25 13:04:05 -0400 | [diff] [blame] | 1718 | ## |
| 1719 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1720 | #Const kDontClipToLayer_Legacy_SaveLayerFlag 0x80000000 |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1721 | #Deprecated soon |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1722 | ## |
| 1723 | |
| 1724 | #Example |
| 1725 | #Height 160 |
| 1726 | #Description |
| 1727 | Canvas Layer captures red and blue circles scaled up by four. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1728 | scalePaint blends Layer back with transparency. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1729 | ## |
| 1730 | void draw(SkCanvas* canvas) { |
| 1731 | SkPaint redPaint, bluePaint, scalePaint; |
| 1732 | redPaint.setColor(SK_ColorRED); |
| 1733 | canvas->drawCircle(21, 21, 8, redPaint); |
| 1734 | bluePaint.setColor(SK_ColorBLUE); |
| 1735 | canvas->drawCircle(31, 21, 8, bluePaint); |
| 1736 | SkMatrix matrix; |
| 1737 | matrix.setScale(4, 4); |
| 1738 | scalePaint.setAlpha(0x40); |
| 1739 | scalePaint.setImageFilter( |
| 1740 | SkImageFilter::MakeMatrixFilter(matrix, kNone_SkFilterQuality, nullptr)); |
| 1741 | SkCanvas::SaveLayerRec saveLayerRec(nullptr, &scalePaint, |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1742 | SkCanvas::kInitWithPrevious_SaveLayerFlag); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1743 | canvas->saveLayer(saveLayerRec); |
| 1744 | canvas->restore(); |
| 1745 | } |
| 1746 | ## |
| 1747 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1748 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha SaveLayerRec |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1749 | |
| 1750 | #Enum ## |
| 1751 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1752 | #Subtopic SaveLayerRec |
| 1753 | #Line # contains the state used to create the Layer ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1754 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1755 | #Struct SaveLayerRec |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 1756 | #Line # contains the state used to create the Layer ## |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1757 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1758 | #Code |
| 1759 | struct SaveLayerRec { |
| 1760 | SaveLayerRec*(... |
| 1761 | |
| 1762 | const SkRect* fBounds; |
| 1763 | const SkPaint* fPaint; |
| 1764 | const SkImageFilter* fBackdrop; |
| 1765 | SaveLayerFlags fSaveLayerFlags; |
| 1766 | }; |
| 1767 | ## |
| 1768 | |
Cary Clark | 137b874 | 2018-05-30 09:21:49 -0400 | [diff] [blame] | 1769 | SaveLayerRec contains the state used to create the Layer. |
| 1770 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1771 | #Subtopic Overview |
| 1772 | #Populate |
| 1773 | ## |
| 1774 | |
| 1775 | #Subtopic Member |
| 1776 | #Populate |
| 1777 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1778 | |
| 1779 | #Member const SkRect* fBounds |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1780 | #Line # hints at Layer size limit ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1781 | fBounds is used as a hint to limit the size of Layer; may be nullptr. |
| 1782 | fBounds suggests but does not define Layer size. To clip drawing to |
| 1783 | a specific rectangle, use clipRect. |
| 1784 | ## |
| 1785 | |
| 1786 | #Member const SkPaint* fPaint |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1787 | #Line # modifies overlay ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1788 | fPaint modifies how Layer overlays the prior Layer; may be nullptr. |
| 1789 | Color_Alpha, Blend_Mode, Color_Filter, Draw_Looper, Image_Filter, and |
| 1790 | Mask_Filter affect Layer draw. |
| 1791 | ## |
| 1792 | |
| 1793 | #Member const SkImageFilter* fBackdrop |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1794 | #Line # applies Image_Filter to prior Layer ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1795 | fBackdrop applies Image_Filter to the prior Layer when copying to the Layer; |
| 1796 | may be nullptr. Use kInitWithPrevious_SaveLayerFlag to copy the |
| 1797 | prior Layer without an Image_Filter. |
| 1798 | ## |
| 1799 | |
| 1800 | #Member const SkImage* fClipMask |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1801 | #Line # clips Layer with Mask_Alpha ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1802 | restore() clips Layer by the Color_Alpha channel of fClipMask when |
| 1803 | Layer is copied to Device. fClipMask may be nullptr. . |
| 1804 | ## |
| 1805 | |
| 1806 | #Member const SkMatrix* fClipMatrix |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1807 | #Line # transforms Mask_Alpha used to clip ## |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1808 | fClipMatrix transforms fClipMask before it clips Layer. If |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1809 | fClipMask describes a translucent gradient, it may be scaled and rotated |
| 1810 | without introducing artifacts. fClipMatrix may be nullptr. |
| 1811 | ## |
| 1812 | |
| 1813 | #Member SaveLayerFlags fSaveLayerFlags |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1814 | #Line # preserves LCD Text, creates with prior Layer contents ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1815 | fSaveLayerFlags are used to create Layer without transparency, |
| 1816 | create Layer for LCD text, and to create Layer with the |
| 1817 | contents of the previous Layer. |
| 1818 | ## |
| 1819 | |
| 1820 | #Example |
| 1821 | #Height 160 |
| 1822 | #Description |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 1823 | 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] | 1824 | 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] | 1825 | transferred to the main canvas. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1826 | ## |
| 1827 | void draw(SkCanvas* canvas) { |
| 1828 | SkPaint redPaint, bluePaint; |
| 1829 | redPaint.setAntiAlias(true); |
| 1830 | redPaint.setColor(SK_ColorRED); |
| 1831 | canvas->drawCircle(21, 21, 8, redPaint); |
| 1832 | bluePaint.setColor(SK_ColorBLUE); |
| 1833 | canvas->drawCircle(31, 21, 8, bluePaint); |
| 1834 | SkMatrix matrix; |
| 1835 | matrix.setScale(4, 4); |
| 1836 | auto scaler = SkImageFilter::MakeMatrixFilter(matrix, kNone_SkFilterQuality, nullptr); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1837 | SkCanvas::SaveLayerRec saveLayerRec(nullptr, nullptr, scaler.get(), 0); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1838 | canvas->saveLayer(saveLayerRec); |
| 1839 | canvas->drawCircle(125, 85, 8, redPaint); |
| 1840 | canvas->restore(); |
| 1841 | } |
| 1842 | ## |
| 1843 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1844 | #Subtopic Constructor |
| 1845 | #Populate |
| 1846 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1847 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1848 | #Method SaveLayerRec() |
| 1849 | #Line # constructs SaveLayerRec ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1850 | Sets fBounds, fPaint, and fBackdrop to nullptr. Clears fSaveLayerFlags. |
| 1851 | |
| 1852 | #Return empty SaveLayerRec ## |
| 1853 | |
| 1854 | #Example |
| 1855 | SkCanvas::SaveLayerRec rec1; |
Mike Klein | e083f7c | 2018-02-07 12:54:27 -0500 | [diff] [blame] | 1856 | rec1.fSaveLayerFlags = SkCanvas::kPreserveLCDText_SaveLayerFlag; |
| 1857 | SkCanvas::SaveLayerRec rec2(nullptr, nullptr, SkCanvas::kPreserveLCDText_SaveLayerFlag); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1858 | SkDebugf("rec1 %c= rec2\n", rec1.fBounds == rec2.fBounds |
| 1859 | && rec1.fPaint == rec2.fPaint |
| 1860 | && rec1.fBackdrop == rec2.fBackdrop |
| 1861 | && rec1.fSaveLayerFlags == rec2.fSaveLayerFlags ? '=' : '!'); |
| 1862 | #StdOut |
| 1863 | rec1 == rec2 |
| 1864 | ## |
| 1865 | ## |
| 1866 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1867 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha |
| 1868 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1869 | ## |
| 1870 | |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1871 | #Method SaveLayerRec(const SkRect* bounds, const SkPaint* paint, SaveLayerFlags saveLayerFlags = 0) |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1872 | |
| 1873 | Sets fBounds, fPaint, and fSaveLayerFlags; sets fBackdrop to nullptr. |
| 1874 | |
| 1875 | #Param bounds Layer dimensions; may be nullptr ## |
| 1876 | #Param paint applied to Layer when overlaying prior Layer; may be nullptr ## |
| 1877 | #Param saveLayerFlags SaveLayerRec options to modify Layer ## |
| 1878 | |
| 1879 | #Return SaveLayerRec with empty backdrop ## |
| 1880 | |
| 1881 | #Example |
| 1882 | SkCanvas::SaveLayerRec rec1; |
| 1883 | SkCanvas::SaveLayerRec rec2(nullptr, nullptr); |
| 1884 | SkDebugf("rec1 %c= rec2\n", rec1.fBounds == rec2.fBounds |
| 1885 | && rec1.fPaint == rec2.fPaint |
| 1886 | && rec1.fBackdrop == rec2.fBackdrop |
| 1887 | && rec1.fSaveLayerFlags == rec2.fSaveLayerFlags ? '=' : '!'); |
| 1888 | #StdOut |
| 1889 | rec1 == rec2 |
| 1890 | ## |
| 1891 | ## |
| 1892 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1893 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha |
| 1894 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1895 | ## |
| 1896 | |
| 1897 | #Method SaveLayerRec(const SkRect* bounds, const SkPaint* paint, const SkImageFilter* backdrop, |
| 1898 | SaveLayerFlags saveLayerFlags) |
| 1899 | |
| 1900 | Sets fBounds, fPaint, fBackdrop, and fSaveLayerFlags. |
| 1901 | |
| 1902 | #Param bounds Layer dimensions; may be nullptr ## |
| 1903 | #Param paint applied to Layer when overlaying prior Layer; |
| 1904 | may be nullptr |
| 1905 | ## |
| 1906 | #Param backdrop prior Layer copied with Image_Filter; may be nullptr |
| 1907 | ## |
| 1908 | #Param saveLayerFlags SaveLayerRec options to modify Layer ## |
| 1909 | |
| 1910 | #Return SaveLayerRec fully specified ## |
| 1911 | |
| 1912 | #Example |
| 1913 | SkCanvas::SaveLayerRec rec1; |
| 1914 | SkCanvas::SaveLayerRec rec2(nullptr, nullptr, nullptr, 0); |
| 1915 | SkDebugf("rec1 %c= rec2\n", rec1.fBounds == rec2.fBounds |
| 1916 | && rec1.fPaint == rec2.fPaint |
| 1917 | && rec1.fBackdrop == rec2.fBackdrop |
| 1918 | && rec1.fSaveLayerFlags == rec2.fSaveLayerFlags ? '=' : '!'); |
| 1919 | #StdOut |
| 1920 | rec1 == rec2 |
| 1921 | ## |
| 1922 | ## |
| 1923 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1924 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha |
| 1925 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1926 | ## |
| 1927 | |
| 1928 | #Method SaveLayerRec(const SkRect* bounds, const SkPaint* paint, const SkImageFilter* backdrop, |
| 1929 | const SkImage* clipMask, const SkMatrix* clipMatrix, |
| 1930 | SaveLayerFlags saveLayerFlags) |
| 1931 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1932 | #Experimental not ready |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1933 | |
| 1934 | Sets fBounds, fPaint, fBackdrop, fClipMask, fClipMatrix, and fSaveLayerFlags. |
| 1935 | clipMatrix uses Color_Alpha channel of image, transformed by clipMatrix, to clip |
| 1936 | Layer when drawn to Canvas. |
| 1937 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1938 | Implementation is not complete; has no effect if Device is GPU-backed. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1939 | |
| 1940 | #Param bounds Layer dimensions; may be nullptr ## |
| 1941 | #Param paint graphics state applied to Layer when overlaying prior |
| 1942 | Layer; may be nullptr |
| 1943 | ## |
| 1944 | #Param backdrop prior Layer copied with Image_Filter; |
| 1945 | may be nullptr |
| 1946 | ## |
| 1947 | #Param clipMask clip applied to Layer; may be nullptr ## |
| 1948 | #Param clipMatrix matrix applied to clipMask; may be nullptr to use |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 1949 | identity matrix |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1950 | ## |
| 1951 | #Param saveLayerFlags SaveLayerRec options to modify Layer ## |
| 1952 | |
| 1953 | #Return SaveLayerRec fully specified ## |
| 1954 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 1955 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1956 | |
| 1957 | ## |
| 1958 | |
| 1959 | #Struct ## |
| 1960 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1961 | #Subtopic ## |
| 1962 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1963 | #Method int saveLayer(const SaveLayerRec& layerRec) |
| 1964 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1965 | #In Layer |
Cary Clark | 939fd6c | 2018-07-12 08:40:13 -0400 | [diff] [blame] | 1966 | Saves Matrix and Clip, and allocates Bitmap for subsequent drawing. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1967 | |
Cary Clark | 939fd6c | 2018-07-12 08:40:13 -0400 | [diff] [blame] | 1968 | Calling restore() discards changes to Matrix and Clip, |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1969 | and blends Bitmap with Color_Alpha opacity onto the prior Layer. |
| 1970 | |
| 1971 | Matrix may be changed by translate(), scale(), rotate(), skew(), concat(), |
| 1972 | setMatrix, and resetMatrix. Clip may be changed by clipRect, clipRRect, |
| 1973 | clipPath, clipRegion. |
| 1974 | |
| 1975 | SaveLayerRec contains the state used to create the Layer. |
| 1976 | |
| 1977 | Call restoreToCount with returned value to restore this and subsequent saves. |
| 1978 | |
| 1979 | #Param layerRec Layer state ## |
| 1980 | |
| 1981 | #Return depth of save state stack ## |
| 1982 | |
| 1983 | #Example |
| 1984 | #Description |
| 1985 | The example draws an image, and saves it into a Layer with kInitWithPrevious_SaveLayerFlag. |
| 1986 | Next it punches a hole in Layer and restore with SkBlendMode::kPlus. |
| 1987 | Where Layer was cleared, the original image will draw unchanged. |
| 1988 | Outside of the circle the mandrill is brightened. |
| 1989 | ## |
| 1990 | #Image 3 |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 1991 | // sk_sp<SkImage> image = GetResourceAsImage("images/mandrill_256.png"); |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 1992 | canvas->drawImage(image, 0, 0, nullptr); |
| 1993 | SkCanvas::SaveLayerRec rec; |
| 1994 | SkPaint paint; |
| 1995 | paint.setBlendMode(SkBlendMode::kPlus); |
| 1996 | rec.fSaveLayerFlags = SkCanvas::kInitWithPrevious_SaveLayerFlag; |
| 1997 | rec.fPaint = &paint; |
| 1998 | canvas->saveLayer(rec); |
| 1999 | paint.setBlendMode(SkBlendMode::kClear); |
| 2000 | canvas->drawCircle(128, 128, 96, paint); |
| 2001 | canvas->restore(); |
| 2002 | ## |
| 2003 | |
| 2004 | #ToDo above example needs to replace GetResourceAsImage with way to select image in fiddle ## |
| 2005 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2006 | #SeeAlso save() restore() saveLayer saveLayerPreserveLCDTextRequests saveLayerAlpha |
| 2007 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2008 | ## |
| 2009 | |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 2010 | #Subtopic Layer ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2011 | |
| 2012 | # ------------------------------------------------------------------------------ |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 2013 | #Subtopic Matrix |
| 2014 | #Line # coordinate transformation ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2015 | |
| 2016 | #Method void translate(SkScalar dx, SkScalar dy) |
| 2017 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2018 | #In Matrix |
| 2019 | #Line # translates Matrix ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2020 | Translates Matrix by dx along the x-axis and dy along the y-axis. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2021 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2022 | Mathematically, replaces Matrix with a translation matrix |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2023 | Premultiplied with Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2024 | |
| 2025 | This has the effect of moving the drawing by (dx, dy) before transforming |
| 2026 | the result with Matrix. |
| 2027 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2028 | #Param dx distance to translate in x ## |
| 2029 | #Param dy distance to translate in y ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2030 | |
| 2031 | #Example |
| 2032 | #Height 128 |
| 2033 | #Description |
| 2034 | scale() followed by translate() produces different results from translate() followed |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2035 | by scale(). |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2036 | |
| 2037 | The blue stroke follows translate of (50, 50); a black |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2038 | 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] | 2039 | Matrix, a red frame follows the same scale of (2, 1/2.f); a gray fill |
| 2040 | follows translate of (50, 50). |
| 2041 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2042 | void draw(SkCanvas* canvas) { |
| 2043 | SkPaint filledPaint; |
| 2044 | SkPaint outlinePaint; |
| 2045 | outlinePaint.setStyle(SkPaint::kStroke_Style); |
| 2046 | outlinePaint.setColor(SK_ColorBLUE); |
| 2047 | canvas->save(); |
| 2048 | canvas->translate(50, 50); |
| 2049 | canvas->drawCircle(28, 28, 15, outlinePaint); // blue center: (50+28, 50+28) |
| 2050 | canvas->scale(2, 1/2.f); |
| 2051 | canvas->drawCircle(28, 28, 15, filledPaint); // black center: (50+(28*2), 50+(28/2)) |
| 2052 | canvas->restore(); |
| 2053 | filledPaint.setColor(SK_ColorGRAY); |
| 2054 | outlinePaint.setColor(SK_ColorRED); |
| 2055 | canvas->scale(2, 1/2.f); |
| 2056 | canvas->drawCircle(28, 28, 15, outlinePaint); // red center: (28*2, 28/2) |
| 2057 | canvas->translate(50, 50); |
| 2058 | 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] | 2059 | } |
| 2060 | ## |
| 2061 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2062 | #SeeAlso concat() scale() skew() rotate() setMatrix |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2063 | |
| 2064 | ## |
| 2065 | |
| 2066 | # ------------------------------------------------------------------------------ |
| 2067 | |
| 2068 | #Method void scale(SkScalar sx, SkScalar sy) |
| 2069 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2070 | #In Matrix |
| 2071 | #Line # scales Matrix ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2072 | Scales Matrix by sx on the x-axis and sy on the y-axis. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2073 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2074 | Mathematically, replaces Matrix with a scale matrix |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2075 | Premultiplied with Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2076 | |
| 2077 | This has the effect of scaling the drawing by (sx, sy) before transforming |
| 2078 | the result with Matrix. |
| 2079 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2080 | #Param sx amount to scale in x ## |
| 2081 | #Param sy amount to scale in y ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2082 | |
| 2083 | #Example |
| 2084 | #Height 160 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2085 | void draw(SkCanvas* canvas) { |
| 2086 | SkPaint paint; |
| 2087 | SkRect rect = { 10, 20, 60, 120 }; |
| 2088 | canvas->translate(20, 20); |
| 2089 | canvas->drawRect(rect, paint); |
| 2090 | canvas->scale(2, .5f); |
| 2091 | paint.setColor(SK_ColorGRAY); |
| 2092 | canvas->drawRect(rect, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2093 | } |
| 2094 | ## |
| 2095 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2096 | #SeeAlso concat() translate() skew() rotate() setMatrix |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2097 | |
| 2098 | ## |
| 2099 | |
| 2100 | # ------------------------------------------------------------------------------ |
| 2101 | |
| 2102 | #Method void rotate(SkScalar degrees) |
| 2103 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2104 | #In Matrix |
| 2105 | #Line # rotates Matrix ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2106 | Rotates Matrix by degrees. Positive degrees rotates clockwise. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2107 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2108 | Mathematically, replaces Matrix with a rotation matrix |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2109 | Premultiplied with Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2110 | |
| 2111 | This has the effect of rotating the drawing by degrees before transforming |
| 2112 | the result with Matrix. |
| 2113 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2114 | #Param degrees amount to rotate, in degrees ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2115 | |
| 2116 | #Example |
| 2117 | #Description |
| 2118 | Draw clock hands at time 5:10. The hour hand and minute hand point up and |
| 2119 | are rotated clockwise. |
| 2120 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2121 | void draw(SkCanvas* canvas) { |
| 2122 | SkPaint paint; |
| 2123 | paint.setStyle(SkPaint::kStroke_Style); |
| 2124 | canvas->translate(128, 128); |
| 2125 | canvas->drawCircle(0, 0, 60, paint); |
| 2126 | canvas->save(); |
| 2127 | 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] | 2128 | canvas->drawLine(0, 0, 0, -50, paint); |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2129 | canvas->restore(); |
| 2130 | canvas->rotate((5 + 10.f/60) * 360 / 12); // 5 and 10/60 hours of 12 scaled to 360 degrees |
| 2131 | canvas->drawLine(0, 0, 0, -30, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2132 | } |
| 2133 | ## |
| 2134 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2135 | #SeeAlso concat() translate() skew() scale() setMatrix |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2136 | |
| 2137 | ## |
| 2138 | |
| 2139 | # ------------------------------------------------------------------------------ |
| 2140 | |
| 2141 | #Method void rotate(SkScalar degrees, SkScalar px, SkScalar py) |
| 2142 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2143 | #In Matrix |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2144 | Rotates Matrix by degrees about a point at (px, py). Positive degrees rotates |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2145 | clockwise. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2146 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2147 | Mathematically, constructs a rotation matrix; Premultiplies the rotation matrix by |
| 2148 | a translation matrix; then replaces Matrix with the resulting matrix |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2149 | Premultiplied with Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2150 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2151 | This has the effect of rotating the drawing about a given point before |
| 2152 | transforming the result with Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2153 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2154 | #Param degrees amount to rotate, in degrees ## |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 2155 | #Param px x-axis value of the point to rotate about ## |
| 2156 | #Param py y-axis value of the point to rotate about ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2157 | |
| 2158 | #Example |
| 2159 | #Height 192 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2160 | void draw(SkCanvas* canvas) { |
| 2161 | SkPaint paint; |
| 2162 | paint.setTextSize(96); |
| 2163 | canvas->drawString("A1", 130, 100, paint); |
| 2164 | canvas->rotate(180, 130, 100); |
| 2165 | canvas->drawString("A1", 130, 100, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2166 | } |
| 2167 | ## |
| 2168 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2169 | #SeeAlso concat() translate() skew() scale() setMatrix |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2170 | |
| 2171 | ## |
| 2172 | |
| 2173 | # ------------------------------------------------------------------------------ |
| 2174 | |
| 2175 | #Method void skew(SkScalar sx, SkScalar sy) |
| 2176 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2177 | #In Matrix |
| 2178 | #Line # skews Matrix ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2179 | Skews Matrix by sx on the x-axis and sy on the y-axis. A positive value of sx |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 2180 | skews the drawing right as y-axis values increase; a positive value of sy skews |
| 2181 | the drawing down as x-axis values increase. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2182 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2183 | Mathematically, replaces Matrix with a skew matrix Premultiplied with Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2184 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2185 | 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] | 2186 | the result with Matrix. |
| 2187 | |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 2188 | #Param sx amount to skew on x-axis ## |
| 2189 | #Param sy amount to skew on y-axis ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2190 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2191 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2192 | #Description |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 2193 | Black text mimics an oblique text style by using a negative skew on x-axis |
| 2194 | that shifts the geometry to the right as the y-axis values decrease. |
| 2195 | Red text uses a positive skew on y-axis to shift the geometry down |
| 2196 | as the x-axis values increase. |
| 2197 | Blue text combines sx and sy skew to rotate and scale. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2198 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2199 | SkPaint paint; |
| 2200 | paint.setTextSize(128); |
| 2201 | canvas->translate(30, 130); |
| 2202 | canvas->save(); |
| 2203 | canvas->skew(-.5, 0); |
| 2204 | canvas->drawString("A1", 0, 0, paint); |
| 2205 | canvas->restore(); |
| 2206 | canvas->save(); |
| 2207 | canvas->skew(0, .5); |
| 2208 | paint.setColor(SK_ColorRED); |
| 2209 | canvas->drawString("A1", 0, 0, paint); |
| 2210 | canvas->restore(); |
| 2211 | canvas->skew(-.5, .5); |
| 2212 | paint.setColor(SK_ColorBLUE); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2213 | canvas->drawString("A1", 0, 0, paint); |
| 2214 | ## |
| 2215 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2216 | #SeeAlso concat() translate() rotate() scale() setMatrix |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2217 | |
| 2218 | ## |
| 2219 | |
| 2220 | # ------------------------------------------------------------------------------ |
| 2221 | |
| 2222 | #Method void concat(const SkMatrix& matrix) |
| 2223 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2224 | #In Matrix |
| 2225 | #Line # multiplies Matrix by Matrix ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2226 | Replaces Matrix with matrix Premultiplied with existing Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2227 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2228 | This has the effect of transforming the drawn geometry by matrix, before |
| 2229 | transforming the result with existing Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2230 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2231 | #Param matrix matrix to Premultiply with existing Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2232 | |
| 2233 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2234 | void draw(SkCanvas* canvas) { |
| 2235 | SkPaint paint; |
| 2236 | paint.setTextSize(80); |
| 2237 | paint.setTextScaleX(.3); |
| 2238 | SkMatrix matrix; |
| 2239 | SkRect rect[2] = {{ 10, 20, 90, 110 }, { 40, 130, 140, 180 }}; |
| 2240 | matrix.setRectToRect(rect[0], rect[1], SkMatrix::kFill_ScaleToFit); |
| 2241 | canvas->drawRect(rect[0], paint); |
| 2242 | canvas->drawRect(rect[1], paint); |
| 2243 | paint.setColor(SK_ColorWHITE); |
| 2244 | canvas->drawString("Here", rect[0].fLeft + 10, rect[0].fBottom - 10, paint); |
| 2245 | canvas->concat(matrix); |
| 2246 | canvas->drawString("There", rect[0].fLeft + 10, rect[0].fBottom - 10, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2247 | } |
| 2248 | ## |
| 2249 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2250 | #SeeAlso translate() rotate() scale() skew() setMatrix |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2251 | |
| 2252 | ## |
| 2253 | |
| 2254 | # ------------------------------------------------------------------------------ |
| 2255 | |
| 2256 | #Method void setMatrix(const SkMatrix& matrix) |
| 2257 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2258 | #In Matrix |
| 2259 | #Line # sets Matrix ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2260 | Replaces Matrix with matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2261 | Unlike concat(), any prior matrix state is overwritten. |
| 2262 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2263 | #Param matrix matrix to copy, replacing existing Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2264 | |
| 2265 | #Example |
| 2266 | #Height 128 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2267 | void draw(SkCanvas* canvas) { |
| 2268 | SkPaint paint; |
| 2269 | canvas->scale(4, 6); |
| 2270 | canvas->drawString("truth", 2, 10, paint); |
| 2271 | SkMatrix matrix; |
| 2272 | matrix.setScale(2.8f, 6); |
| 2273 | canvas->setMatrix(matrix); |
| 2274 | canvas->drawString("consequences", 2, 20, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2275 | } |
| 2276 | ## |
| 2277 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2278 | #SeeAlso resetMatrix concat() translate() rotate() scale() skew() |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2279 | |
| 2280 | ## |
| 2281 | |
| 2282 | # ------------------------------------------------------------------------------ |
| 2283 | |
| 2284 | #Method void resetMatrix() |
| 2285 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2286 | #In Matrix |
| 2287 | #Line # resets Matrix to identity ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2288 | Sets Matrix to the identity matrix. |
| 2289 | Any prior matrix state is overwritten. |
| 2290 | |
| 2291 | #Example |
| 2292 | #Height 128 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2293 | void draw(SkCanvas* canvas) { |
| 2294 | SkPaint paint; |
| 2295 | canvas->scale(4, 6); |
| 2296 | canvas->drawString("truth", 2, 10, paint); |
| 2297 | canvas->resetMatrix(); |
| 2298 | canvas->scale(2.8f, 6); |
| 2299 | canvas->drawString("consequences", 2, 20, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2300 | } |
| 2301 | ## |
| 2302 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2303 | #SeeAlso setMatrix concat() translate() rotate() scale() skew() |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2304 | |
| 2305 | ## |
| 2306 | |
| 2307 | # ------------------------------------------------------------------------------ |
| 2308 | |
| 2309 | #Method const SkMatrix& getTotalMatrix() const |
| 2310 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2311 | #In Matrix |
| 2312 | #Line # returns Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2313 | Returns Matrix. |
| 2314 | This does not account for translation by Device or Surface. |
| 2315 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2316 | #Return Matrix in Canvas ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2317 | |
| 2318 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2319 | SkDebugf("isIdentity %s\n", canvas->getTotalMatrix().isIdentity() ? "true" : "false"); |
| 2320 | #StdOut |
| 2321 | isIdentity true |
| 2322 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2323 | ## |
| 2324 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2325 | #SeeAlso setMatrix resetMatrix concat() |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2326 | |
| 2327 | ## |
| 2328 | |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 2329 | #Subtopic Matrix ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2330 | |
| 2331 | # ------------------------------------------------------------------------------ |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 2332 | #Subtopic Clip |
| 2333 | #Line # stack of clipping Paths ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2334 | |
| 2335 | 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] | 2336 | stack can be constructed from one or more Path_Contour elements. The |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2337 | Path_Contour may be composed of any number of Path_Verb segments. Each |
| 2338 | Path_Contour forms a closed area; Path_Fill_Type defines the area enclosed |
| 2339 | by Path_Contour. |
| 2340 | |
| 2341 | Clip stack of Path elements successfully restrict the Path area. Each |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2342 | Path is transformed by Matrix, then intersected with or subtracted from the |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2343 | prior Clip to form the replacement Clip. Use SkClipOp::kDifference |
| 2344 | to subtract Path from Clip; use SkClipOp::kIntersect to intersect Path |
| 2345 | with Clip. |
| 2346 | |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2347 | A clipping Path may be Anti_Aliased; if Path, after transformation, is |
| 2348 | composed of horizontal and vertical lines, clearing Anti_Alias allows whole pixels |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2349 | to either be inside or outside the clip. The fastest drawing has a Aliased, |
| 2350 | rectangular clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2351 | |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2352 | 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] | 2353 | that drawing blend partially with the destination along the edge. A rotated |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2354 | rectangular Anti_Aliased clip looks smoother but draws slower. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2355 | |
| 2356 | Clip can combine with Rect and Round_Rect primitives; like |
| 2357 | Path, these are transformed by Matrix before they are combined with Clip. |
| 2358 | |
| 2359 | Clip can combine with Region. Region is assumed to be in Device coordinates |
| 2360 | and is unaffected by Matrix. |
| 2361 | |
| 2362 | #Example |
| 2363 | #Height 90 |
| 2364 | #Description |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2365 | 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] | 2366 | Use an image filter to zoom into the pixels drawn. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2367 | 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] | 2368 | 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] | 2369 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2370 | SkPaint redPaint, scalePaint; |
| 2371 | redPaint.setAntiAlias(true); |
| 2372 | redPaint.setColor(SK_ColorRED); |
| 2373 | canvas->save(); |
| 2374 | for (bool antialias : { false, true } ) { |
| 2375 | canvas->save(); |
| 2376 | canvas->clipRect(SkRect::MakeWH(19.5f, 11.5f), antialias); |
| 2377 | canvas->drawCircle(17, 11, 8, redPaint); |
| 2378 | canvas->restore(); |
| 2379 | canvas->translate(16, 0); |
| 2380 | } |
| 2381 | canvas->restore(); |
| 2382 | SkMatrix matrix; |
| 2383 | matrix.setScale(6, 6); |
| 2384 | scalePaint.setImageFilter( |
| 2385 | SkImageFilter::MakeMatrixFilter(matrix, kNone_SkFilterQuality, nullptr)); |
| 2386 | SkCanvas::SaveLayerRec saveLayerRec( |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2387 | nullptr, &scalePaint, SkCanvas::kInitWithPrevious_SaveLayerFlag); |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2388 | canvas->saveLayer(saveLayerRec); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2389 | canvas->restore(); |
| 2390 | ## |
| 2391 | |
| 2392 | #Method void clipRect(const SkRect& rect, SkClipOp op, bool doAntiAlias) |
| 2393 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2394 | #In Clip |
| 2395 | #Line # combines Clip with Rect ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2396 | Replaces Clip with the intersection or difference of Clip and rect, |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2397 | 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] | 2398 | before it is combined with Clip. |
| 2399 | |
Cary Clark | a523d2d | 2017-08-30 08:58:10 -0400 | [diff] [blame] | 2400 | #Param rect Rect to combine with Clip ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2401 | #Param op Clip_Op to apply to Clip ## |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2402 | #Param doAntiAlias true if Clip is to be Anti_Aliased ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2403 | |
| 2404 | #Example |
| 2405 | #Height 128 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2406 | void draw(SkCanvas* canvas) { |
| 2407 | canvas->rotate(10); |
| 2408 | SkPaint paint; |
| 2409 | paint.setAntiAlias(true); |
| 2410 | for (auto alias: { false, true } ) { |
| 2411 | canvas->save(); |
| 2412 | canvas->clipRect(SkRect::MakeWH(90, 80), SkClipOp::kIntersect, alias); |
| 2413 | canvas->drawCircle(100, 60, 60, paint); |
| 2414 | canvas->restore(); |
| 2415 | canvas->translate(80, 0); |
| 2416 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2417 | } |
| 2418 | ## |
| 2419 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2420 | #SeeAlso clipRRect clipPath clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2421 | |
| 2422 | ## |
| 2423 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2424 | #Method void clipRect(const SkRect& rect, SkClipOp op) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2425 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2426 | #In Clip |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2427 | Replaces Clip with the intersection or difference of Clip and rect. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2428 | Resulting Clip is Aliased; pixels are fully contained by the clip. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2429 | rect is transformed by Matrix before it is combined with Clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2430 | |
Cary Clark | a523d2d | 2017-08-30 08:58:10 -0400 | [diff] [blame] | 2431 | #Param rect Rect to combine with Clip ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2432 | #Param op Clip_Op to apply to Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2433 | |
| 2434 | #Example |
| 2435 | #Height 192 |
| 2436 | #Width 280 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2437 | void draw(SkCanvas* canvas) { |
| 2438 | SkPaint paint; |
| 2439 | for (SkClipOp op: { SkClipOp::kIntersect, SkClipOp::kDifference } ) { |
| 2440 | canvas->save(); |
| 2441 | canvas->clipRect(SkRect::MakeWH(90, 120), op, false); |
| 2442 | canvas->drawCircle(100, 100, 60, paint); |
| 2443 | canvas->restore(); |
| 2444 | canvas->translate(80, 0); |
| 2445 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2446 | } |
| 2447 | ## |
| 2448 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2449 | #SeeAlso clipRRect clipPath clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2450 | |
| 2451 | ## |
| 2452 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2453 | #Method void clipRect(const SkRect& rect, bool doAntiAlias = false) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2454 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2455 | #In Clip |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2456 | Replaces Clip with the intersection of Clip and rect. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2457 | Resulting Clip is Aliased; pixels are fully contained by the clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2458 | rect is transformed by Matrix |
| 2459 | before it is combined with Clip. |
| 2460 | |
Cary Clark | a523d2d | 2017-08-30 08:58:10 -0400 | [diff] [blame] | 2461 | #Param rect Rect to combine with Clip ## |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2462 | #Param doAntiAlias true if Clip is to be Anti_Aliased ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2463 | |
| 2464 | #Example |
| 2465 | #Height 133 |
| 2466 | #Description |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2467 | A circle drawn in pieces looks uniform when drawn Aliased. |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2468 | 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] | 2469 | visible as a thin pair of lines through the right circle. |
| 2470 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2471 | void draw(SkCanvas* canvas) { |
| 2472 | canvas->clear(SK_ColorWHITE); |
| 2473 | SkPaint paint; |
| 2474 | paint.setAntiAlias(true); |
| 2475 | paint.setColor(0x8055aaff); |
| 2476 | SkRect clipRect = { 0, 0, 87.4f, 87.4f }; |
| 2477 | for (auto alias: { false, true } ) { |
| 2478 | canvas->save(); |
| 2479 | canvas->clipRect(clipRect, SkClipOp::kIntersect, alias); |
| 2480 | canvas->drawCircle(67, 67, 60, paint); |
| 2481 | canvas->restore(); |
| 2482 | canvas->save(); |
| 2483 | canvas->clipRect(clipRect, SkClipOp::kDifference, alias); |
| 2484 | canvas->drawCircle(67, 67, 60, paint); |
| 2485 | canvas->restore(); |
| 2486 | canvas->translate(120, 0); |
| 2487 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2488 | } |
| 2489 | ## |
| 2490 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2491 | #SeeAlso clipRRect clipPath clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2492 | |
| 2493 | ## |
| 2494 | |
| 2495 | #Method void androidFramework_setDeviceClipRestriction(const SkIRect& rect) |
| 2496 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2497 | #In Clip |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 2498 | #Line # exists for use by Android framework ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2499 | 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] | 2500 | clipPath and intersect the current clip with the specified rect. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2501 | The maximum clip affects only future clipping operations; it is not retroactive. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2502 | The clip restriction is not recorded in pictures. |
| 2503 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2504 | Pass an empty rect to disable maximum clip. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2505 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2506 | #Private |
Cary Clark | 137b874 | 2018-05-30 09:21:49 -0400 | [diff] [blame] | 2507 | This private API is for use by Android framework only. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2508 | ## |
| 2509 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2510 | #Param rect maximum allowed clip in device coordinates |
Cary Clark | 579985c | 2017-07-31 11:48:27 -0400 | [diff] [blame] | 2511 | #Param ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2512 | |
| 2513 | ## |
| 2514 | |
| 2515 | #Method void clipRRect(const SkRRect& rrect, SkClipOp op, bool doAntiAlias) |
| 2516 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2517 | #In Clip |
| 2518 | #Line # combines Clip with Round_Rect ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2519 | Replaces Clip with the intersection or difference of Clip and rrect, |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2520 | with an Aliased or Anti_Aliased clip edge. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2521 | rrect is transformed by Matrix |
| 2522 | before it is combined with Clip. |
| 2523 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2524 | #Param rrect Round_Rect to combine with Clip ## |
| 2525 | #Param op Clip_Op to apply to Clip ## |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2526 | #Param doAntiAlias true if Clip is to be Anti_Aliased ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2527 | |
| 2528 | #Example |
| 2529 | #Height 128 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2530 | void draw(SkCanvas* canvas) { |
| 2531 | canvas->clear(SK_ColorWHITE); |
| 2532 | SkPaint paint; |
| 2533 | paint.setAntiAlias(true); |
| 2534 | paint.setColor(0x8055aaff); |
| 2535 | SkRRect oval; |
| 2536 | oval.setOval({10, 20, 90, 100}); |
| 2537 | canvas->clipRRect(oval, SkClipOp::kIntersect, true); |
| 2538 | canvas->drawCircle(70, 100, 60, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2539 | } |
| 2540 | ## |
| 2541 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2542 | #SeeAlso clipRect clipPath clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2543 | |
| 2544 | ## |
| 2545 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2546 | #Method void clipRRect(const SkRRect& rrect, SkClipOp op) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2547 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2548 | #In Clip |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2549 | Replaces Clip with the intersection or difference of Clip and rrect. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2550 | Resulting Clip is Aliased; pixels are fully contained by the clip. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2551 | rrect is transformed by Matrix before it is combined with Clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2552 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2553 | #Param rrect Round_Rect to combine with Clip ## |
| 2554 | #Param op Clip_Op to apply to Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2555 | |
| 2556 | #Example |
| 2557 | #Height 128 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2558 | void draw(SkCanvas* canvas) { |
| 2559 | SkPaint paint; |
| 2560 | paint.setColor(0x8055aaff); |
| 2561 | auto oval = SkRRect::MakeOval({10, 20, 90, 100}); |
| 2562 | canvas->clipRRect(oval, SkClipOp::kIntersect); |
| 2563 | canvas->drawCircle(70, 100, 60, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2564 | } |
| 2565 | ## |
| 2566 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2567 | #SeeAlso clipRect clipPath clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2568 | |
| 2569 | ## |
| 2570 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2571 | #Method void clipRRect(const SkRRect& rrect, bool doAntiAlias = false) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2572 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2573 | #In Clip |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2574 | Replaces Clip with the intersection of Clip and rrect, |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2575 | with an Aliased or Anti_Aliased clip edge. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2576 | rrect is transformed by Matrix before it is combined with Clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2577 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2578 | #Param rrect Round_Rect to combine with Clip ## |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2579 | #Param doAntiAlias true if Clip is to be Anti_Aliased ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2580 | |
| 2581 | #Example |
| 2582 | #Height 128 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2583 | void draw(SkCanvas* canvas) { |
| 2584 | SkPaint paint; |
| 2585 | paint.setAntiAlias(true); |
| 2586 | auto oval = SkRRect::MakeRectXY({10, 20, 90, 100}, 9, 13); |
| 2587 | canvas->clipRRect(oval, true); |
| 2588 | canvas->drawCircle(70, 100, 60, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2589 | } |
| 2590 | ## |
| 2591 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2592 | #SeeAlso clipRect clipPath clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2593 | |
| 2594 | ## |
| 2595 | |
| 2596 | #Method void clipPath(const SkPath& path, SkClipOp op, bool doAntiAlias) |
| 2597 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2598 | #In Clip |
| 2599 | #Line # combines Clip with Path ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2600 | Replaces Clip with the intersection or difference of Clip and path, |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2601 | 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] | 2602 | describes the area inside or outside its contours; and if Path_Contour overlaps |
| 2603 | 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] | 2604 | path is transformed by Matrix before it is combined with Clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2605 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2606 | #Param path Path to combine with Clip ## |
| 2607 | #Param op Clip_Op to apply to Clip ## |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2608 | #Param doAntiAlias true if Clip is to be Anti_Aliased ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2609 | |
| 2610 | #Example |
| 2611 | #Description |
| 2612 | Top figure uses SkPath::kInverseWinding_FillType and SkClipOp::kDifference; |
| 2613 | area outside clip is subtracted from circle. |
| 2614 | |
| 2615 | Bottom figure uses SkPath::kWinding_FillType and SkClipOp::kIntersect; |
| 2616 | area inside clip is intersected with circle. |
| 2617 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2618 | void draw(SkCanvas* canvas) { |
| 2619 | SkPaint paint; |
| 2620 | paint.setAntiAlias(true); |
| 2621 | SkPath path; |
| 2622 | path.addRect({20, 30, 100, 110}); |
| 2623 | path.setFillType(SkPath::kInverseWinding_FillType); |
| 2624 | canvas->save(); |
| 2625 | canvas->clipPath(path, SkClipOp::kDifference, false); |
| 2626 | canvas->drawCircle(70, 100, 60, paint); |
| 2627 | canvas->restore(); |
| 2628 | canvas->translate(100, 100); |
| 2629 | path.setFillType(SkPath::kWinding_FillType); |
| 2630 | canvas->clipPath(path, SkClipOp::kIntersect, false); |
| 2631 | canvas->drawCircle(70, 100, 60, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2632 | } |
| 2633 | ## |
| 2634 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2635 | #SeeAlso clipRect clipRRect clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2636 | |
| 2637 | ## |
| 2638 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2639 | #Method void clipPath(const SkPath& path, SkClipOp op) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2640 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2641 | #In Clip |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2642 | Replaces Clip with the intersection or difference of Clip and path. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2643 | Resulting Clip is Aliased; pixels are fully contained by the clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2644 | Path_Fill_Type determines if path |
| 2645 | describes the area inside or outside its contours; and if Path_Contour overlaps |
| 2646 | itself or another Path_Contour, whether the overlaps form part of the area. |
| 2647 | path is transformed by Matrix |
| 2648 | before it is combined with Clip. |
| 2649 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2650 | #Param path Path to combine with Clip ## |
| 2651 | #Param op Clip_Op to apply to Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2652 | |
| 2653 | #Example |
| 2654 | #Description |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 2655 | 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] | 2656 | SkPath::kWinding_FillType, the overlap is included. Set to |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2657 | SkPath::kEvenOdd_FillType, the overlap is excluded and forms a hole. |
| 2658 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2659 | void draw(SkCanvas* canvas) { |
| 2660 | SkPaint paint; |
| 2661 | paint.setAntiAlias(true); |
| 2662 | SkPath path; |
| 2663 | path.addRect({20, 15, 100, 95}); |
| 2664 | path.addRect({50, 65, 130, 135}); |
| 2665 | path.setFillType(SkPath::kWinding_FillType); |
| 2666 | canvas->save(); |
| 2667 | canvas->clipPath(path, SkClipOp::kIntersect); |
| 2668 | canvas->drawCircle(70, 85, 60, paint); |
| 2669 | canvas->restore(); |
| 2670 | canvas->translate(100, 100); |
| 2671 | path.setFillType(SkPath::kEvenOdd_FillType); |
| 2672 | canvas->clipPath(path, SkClipOp::kIntersect); |
| 2673 | canvas->drawCircle(70, 85, 60, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2674 | } |
| 2675 | ## |
| 2676 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2677 | #SeeAlso clipRect clipRRect clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2678 | |
| 2679 | ## |
| 2680 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2681 | #Method void clipPath(const SkPath& path, bool doAntiAlias = false) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2682 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2683 | #In Clip |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2684 | Replaces Clip with the intersection of Clip and path. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2685 | Resulting Clip is Aliased; pixels are fully contained by the clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2686 | Path_Fill_Type determines if path |
| 2687 | describes the area inside or outside its contours; and if Path_Contour overlaps |
| 2688 | 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] | 2689 | path is transformed by Matrix before it is combined with Clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2690 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2691 | #Param path Path to combine with Clip ## |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 2692 | #Param doAntiAlias true if Clip is to be Anti_Aliased ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2693 | |
| 2694 | #Example |
| 2695 | #Height 212 |
| 2696 | #Description |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2697 | Clip loops over itself covering its center twice. When clip Path_Fill_Type |
| 2698 | is set to SkPath::kWinding_FillType, the overlap is included. Set to |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2699 | SkPath::kEvenOdd_FillType, the overlap is excluded and forms a hole. |
| 2700 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2701 | void draw(SkCanvas* canvas) { |
| 2702 | SkPaint paint; |
| 2703 | paint.setAntiAlias(true); |
| 2704 | SkPath path; |
| 2705 | SkPoint poly[] = {{20, 20}, { 80, 20}, { 80, 80}, {40, 80}, |
| 2706 | {40, 40}, {100, 40}, {100, 100}, {20, 100}}; |
| 2707 | path.addPoly(poly, SK_ARRAY_COUNT(poly), true); |
| 2708 | path.setFillType(SkPath::kWinding_FillType); |
| 2709 | canvas->save(); |
| 2710 | canvas->clipPath(path, SkClipOp::kIntersect); |
| 2711 | canvas->drawCircle(50, 50, 45, paint); |
| 2712 | canvas->restore(); |
| 2713 | canvas->translate(100, 100); |
| 2714 | path.setFillType(SkPath::kEvenOdd_FillType); |
| 2715 | canvas->clipPath(path, SkClipOp::kIntersect); |
| 2716 | canvas->drawCircle(50, 50, 45, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2717 | } |
| 2718 | ## |
| 2719 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2720 | #SeeAlso clipRect clipRRect clipRegion |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2721 | |
| 2722 | ## |
| 2723 | |
| 2724 | # ------------------------------------------------------------------------------ |
| 2725 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2726 | #Method void setAllowSimplifyClip(bool allow) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2727 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2728 | #In Clip |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 2729 | #Experimental testing |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2730 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2731 | Set to simplify clip stack using PathOps. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2732 | |
| 2733 | ## |
| 2734 | |
| 2735 | # ------------------------------------------------------------------------------ |
| 2736 | |
| 2737 | #Method void clipRegion(const SkRegion& deviceRgn, SkClipOp op = SkClipOp::kIntersect) |
| 2738 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2739 | #In Clip |
| 2740 | #Line # combines Clip with Region ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2741 | Replaces Clip with the intersection or difference of Clip and Region deviceRgn. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2742 | Resulting Clip is Aliased; pixels are fully contained by the clip. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2743 | deviceRgn is unaffected by Matrix. |
| 2744 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2745 | #Param deviceRgn Region to combine with Clip ## |
| 2746 | #Param op Clip_Op to apply to Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2747 | |
| 2748 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2749 | #Description |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 2750 | region is unaffected by canvas rotation; iRect is affected by canvas rotation. |
| 2751 | 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] | 2752 | aligns to pixel boundaries. |
| 2753 | ## |
| 2754 | void draw(SkCanvas* canvas) { |
| 2755 | SkPaint paint; |
| 2756 | paint.setAntiAlias(true); |
| 2757 | SkIRect iRect = {30, 40, 120, 130 }; |
| 2758 | SkRegion region(iRect); |
| 2759 | canvas->rotate(10); |
| 2760 | canvas->save(); |
| 2761 | canvas->clipRegion(region, SkClipOp::kIntersect); |
| 2762 | canvas->drawCircle(50, 50, 45, paint); |
| 2763 | canvas->restore(); |
| 2764 | canvas->translate(100, 100); |
| 2765 | canvas->clipRect(SkRect::Make(iRect), SkClipOp::kIntersect); |
| 2766 | canvas->drawCircle(50, 50, 45, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2767 | } |
| 2768 | ## |
| 2769 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2770 | #SeeAlso clipRect clipRRect clipPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2771 | |
| 2772 | ## |
| 2773 | |
| 2774 | #Method bool quickReject(const SkRect& rect) const |
| 2775 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2776 | #In Clip |
| 2777 | #Line # returns if Rect is outside Clip ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2778 | Returns true if Rect rect, transformed by Matrix, can be quickly determined to be |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2779 | outside of Clip. May return false even though rect is outside of Clip. |
| 2780 | |
| 2781 | Use to check if an area to be drawn is clipped out, to skip subsequent draw calls. |
| 2782 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2783 | #Param rect Rect to compare with Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2784 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2785 | #Return true if rect, transformed by Matrix, does not intersect Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2786 | |
| 2787 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2788 | void draw(SkCanvas* canvas) { |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2789 | SkRect testRect = {30, 30, 120, 129 }; |
| 2790 | SkRect clipRect = {30, 130, 120, 230 }; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2791 | canvas->save(); |
| 2792 | canvas->clipRect(clipRect); |
| 2793 | SkDebugf("quickReject %s\n", canvas->quickReject(testRect) ? "true" : "false"); |
| 2794 | canvas->restore(); |
| 2795 | canvas->rotate(10); |
| 2796 | canvas->clipRect(clipRect); |
| 2797 | SkDebugf("quickReject %s\n", canvas->quickReject(testRect) ? "true" : "false"); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2798 | } |
| 2799 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2800 | quickReject true |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2801 | quickReject false |
| 2802 | ## |
| 2803 | ## |
| 2804 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2805 | #SeeAlso getLocalClipBounds getTotalMatrix SkBitmap::drawsNothing |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2806 | |
| 2807 | ## |
| 2808 | |
| 2809 | #Method bool quickReject(const SkPath& path) const |
| 2810 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2811 | #In Clip |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2812 | Returns true if path, transformed by Matrix, can be quickly determined to be |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2813 | outside of Clip. May return false even though path is outside of Clip. |
| 2814 | |
| 2815 | Use to check if an area to be drawn is clipped out, to skip subsequent draw calls. |
| 2816 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2817 | #Param path Path to compare with Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2818 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2819 | #Return true if path, transformed by Matrix, does not intersect Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2820 | |
| 2821 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2822 | void draw(SkCanvas* canvas) { |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2823 | SkPoint testPoints[] = {{30, 30}, {120, 30}, {120, 129} }; |
| 2824 | SkPoint clipPoints[] = {{30, 130}, {120, 130}, {120, 230} }; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2825 | SkPath testPath, clipPath; |
| 2826 | testPath.addPoly(testPoints, SK_ARRAY_COUNT(testPoints), true); |
| 2827 | clipPath.addPoly(clipPoints, SK_ARRAY_COUNT(clipPoints), true); |
| 2828 | canvas->save(); |
| 2829 | canvas->clipPath(clipPath); |
| 2830 | SkDebugf("quickReject %s\n", canvas->quickReject(testPath) ? "true" : "false"); |
| 2831 | canvas->restore(); |
| 2832 | canvas->rotate(10); |
| 2833 | canvas->clipPath(clipPath); |
| 2834 | SkDebugf("quickReject %s\n", canvas->quickReject(testPath) ? "true" : "false"); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2835 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2836 | quickReject true |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2837 | quickReject false |
| 2838 | ## |
| 2839 | } |
| 2840 | ## |
| 2841 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2842 | #SeeAlso getLocalClipBounds getTotalMatrix SkBitmap::drawsNothing |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2843 | |
| 2844 | ## |
| 2845 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2846 | #Method SkRect getLocalClipBounds() const |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2847 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2848 | #In Clip |
| 2849 | #Line # returns Clip bounds in source coordinates ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2850 | Returns bounds of Clip, transformed by inverse of Matrix. If Clip is empty, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2851 | return SkRect::MakeEmpty, where all Rect sides equal zero. |
| 2852 | |
| 2853 | 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] | 2854 | is Anti_Aliased. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2855 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2856 | #Return bounds of Clip in local coordinates ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2857 | |
| 2858 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2859 | #Description |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2860 | Initial bounds is device bounds outset by 1 on all sides. |
| 2861 | Clipped bounds is clipPath bounds outset by 1 on all sides. |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 2862 | Scaling the canvas by two on both axes scales the local bounds by 1/2 |
| 2863 | on both axes. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2864 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2865 | SkCanvas local(256, 256); |
| 2866 | canvas = &local; |
| 2867 | SkRect bounds = canvas->getLocalClipBounds(); |
| 2868 | SkDebugf("left:%g top:%g right:%g bottom:%g\n", |
| 2869 | bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2870 | SkPoint clipPoints[] = {{30, 130}, {120, 130}, {120, 230} }; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2871 | SkPath clipPath; |
| 2872 | clipPath.addPoly(clipPoints, SK_ARRAY_COUNT(clipPoints), true); |
| 2873 | canvas->clipPath(clipPath); |
| 2874 | bounds = canvas->getLocalClipBounds(); |
| 2875 | SkDebugf("left:%g top:%g right:%g bottom:%g\n", |
| 2876 | bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom); |
| 2877 | canvas->scale(2, 2); |
| 2878 | bounds = canvas->getLocalClipBounds(); |
| 2879 | SkDebugf("left:%g top:%g right:%g bottom:%g\n", |
| 2880 | bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom); |
| 2881 | #StdOut |
| 2882 | left:-1 top:-1 right:257 bottom:257 |
| 2883 | left:29 top:129 right:121 bottom:231 |
| 2884 | left:14.5 top:64.5 right:60.5 bottom:115.5 |
| 2885 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2886 | ## |
| 2887 | |
| 2888 | # local canvas in example works around bug in fiddle ## |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 2889 | #Bug 6524 |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2890 | #SeeAlso getDeviceClipBounds getBaseLayerSize quickReject |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2891 | |
| 2892 | ## |
| 2893 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2894 | #Method bool getLocalClipBounds(SkRect* bounds) const |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2895 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2896 | #In Clip |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2897 | Returns bounds of Clip, transformed by inverse of Matrix. If Clip is empty, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2898 | return false, and set bounds to SkRect::MakeEmpty, where all Rect sides equal zero. |
| 2899 | |
| 2900 | 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] | 2901 | is Anti_Aliased. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2902 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2903 | #Param bounds Rect of Clip in local coordinates ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2904 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2905 | #Return true if Clip bounds is not empty ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2906 | |
| 2907 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2908 | void draw(SkCanvas* canvas) { |
| 2909 | SkCanvas local(256, 256); |
| 2910 | canvas = &local; |
| 2911 | SkRect bounds; |
| 2912 | SkDebugf("local bounds empty = %s\n", canvas->getLocalClipBounds(&bounds) |
| 2913 | ? "false" : "true"); |
| 2914 | SkPath path; |
| 2915 | canvas->clipPath(path); |
| 2916 | SkDebugf("local bounds empty = %s\n", canvas->getLocalClipBounds(&bounds) |
| 2917 | ? "false" : "true"); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2918 | } |
| 2919 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2920 | local bounds empty = false |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2921 | local bounds empty = true |
| 2922 | ## |
| 2923 | ## |
| 2924 | |
| 2925 | # local canvas in example works around bug in fiddle ## |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 2926 | #Bug 6524 |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 2927 | #SeeAlso getDeviceClipBounds getBaseLayerSize quickReject |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2928 | |
| 2929 | ## |
| 2930 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2931 | #Method SkIRect getDeviceClipBounds() const |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2932 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2933 | #In Clip |
| 2934 | #Line # returns IRect bounds of Clip ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2935 | Returns IRect bounds of Clip, unaffected by Matrix. If Clip is empty, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2936 | return SkRect::MakeEmpty, where all Rect sides equal zero. |
| 2937 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2938 | Unlike getLocalClipBounds, returned IRect is not outset. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2939 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2940 | #Return bounds of Clip in Device coordinates ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2941 | |
| 2942 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2943 | void draw(SkCanvas* canvas) { |
| 2944 | #Description |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2945 | Initial bounds is device bounds, not outset. |
| 2946 | Clipped bounds is clipPath bounds, not outset. |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 2947 | Scaling the canvas by 1/2 on both axes scales the device bounds by 1/2 |
| 2948 | on both axes. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2949 | ## |
| 2950 | SkCanvas device(256, 256); |
| 2951 | canvas = &device; |
| 2952 | SkIRect bounds = canvas->getDeviceClipBounds(); |
| 2953 | SkDebugf("left:%d top:%d right:%d bottom:%d\n", |
| 2954 | bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2955 | SkPoint clipPoints[] = {{30, 130}, {120, 130}, {120, 230} }; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2956 | SkPath clipPath; |
| 2957 | clipPath.addPoly(clipPoints, SK_ARRAY_COUNT(clipPoints), true); |
| 2958 | canvas->save(); |
| 2959 | canvas->clipPath(clipPath); |
| 2960 | bounds = canvas->getDeviceClipBounds(); |
| 2961 | SkDebugf("left:%d top:%d right:%d bottom:%d\n", |
| 2962 | bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom); |
| 2963 | canvas->restore(); |
| 2964 | canvas->scale(1.f/2, 1.f/2); |
| 2965 | canvas->clipPath(clipPath); |
| 2966 | bounds = canvas->getDeviceClipBounds(); |
| 2967 | SkDebugf("left:%d top:%d right:%d bottom:%d\n", |
| 2968 | bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2969 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2970 | left:0 top:0 right:256 bottom:256 |
| 2971 | left:30 top:130 right:120 bottom:230 |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2972 | left:15 top:65 right:60 bottom:115 |
| 2973 | ## |
| 2974 | } |
| 2975 | ## |
| 2976 | |
| 2977 | #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] | 2978 | #SeeAlso getLocalClipBounds getBaseLayerSize quickReject |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2979 | |
| 2980 | # device canvas in example works around bug in fiddle ## |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 2981 | #Bug 6524 |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2982 | |
| 2983 | ## |
| 2984 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2985 | #Method bool getDeviceClipBounds(SkIRect* bounds) const |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2986 | |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 2987 | #In Clip |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 2988 | Returns IRect bounds of Clip, unaffected by Matrix. If Clip is empty, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2989 | return false, and set bounds to SkRect::MakeEmpty, where all Rect sides equal zero. |
| 2990 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 2991 | Unlike getLocalClipBounds, bounds is not outset. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2992 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2993 | #Param bounds Rect of Clip in device coordinates ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2994 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2995 | #Return true if Clip bounds is not empty ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 2996 | |
| 2997 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 2998 | void draw(SkCanvas* canvas) { |
| 2999 | SkIRect bounds; |
| 3000 | SkDebugf("device bounds empty = %s\n", canvas->getDeviceClipBounds(&bounds) |
| 3001 | ? "false" : "true"); |
| 3002 | SkPath path; |
| 3003 | canvas->clipPath(path); |
| 3004 | SkDebugf("device bounds empty = %s\n", canvas->getDeviceClipBounds(&bounds) |
| 3005 | ? "false" : "true"); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3006 | } |
| 3007 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3008 | device bounds empty = false |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3009 | device bounds empty = true |
| 3010 | ## |
| 3011 | ## |
| 3012 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3013 | #SeeAlso getLocalClipBounds getBaseLayerSize quickReject |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3014 | |
| 3015 | ## |
| 3016 | |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 3017 | #Subtopic Clip ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3018 | |
| 3019 | # ------------------------------------------------------------------------------ |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3020 | #Subtopic Draw |
| 3021 | #Populate |
| 3022 | #Line # draws into Canvas ## |
| 3023 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3024 | |
| 3025 | #Method void drawColor(SkColor color, SkBlendMode mode = SkBlendMode::kSrcOver) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3026 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3027 | #Line # fills Clip with Color and Blend_Mode ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3028 | Fills Clip with Color color. |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 3029 | mode determines how ARGB is combined with destination. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3030 | |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 3031 | #Param color Unpremultiplied ARGB ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3032 | #Param mode SkBlendMode used to combine source color and destination ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3033 | |
| 3034 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3035 | canvas->drawColor(SK_ColorRED); |
| 3036 | canvas->clipRect(SkRect::MakeWH(150, 150)); |
| 3037 | canvas->drawColor(SkColorSetARGB(0x80, 0x00, 0xFF, 0x00), SkBlendMode::kPlus); |
| 3038 | canvas->clipRect(SkRect::MakeWH(75, 75)); |
| 3039 | canvas->drawColor(SkColorSetARGB(0x80, 0x00, 0x00, 0xFF), SkBlendMode::kPlus); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3040 | ## |
| 3041 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3042 | #SeeAlso clear SkBitmap::erase drawPaint |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3043 | |
| 3044 | ## |
| 3045 | |
| 3046 | # ------------------------------------------------------------------------------ |
| 3047 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3048 | #Method void clear(SkColor color) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3049 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3050 | #Line # fills Clip with Color ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3051 | Fills Clip with Color color using SkBlendMode::kSrc. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3052 | This has the effect of replacing all pixels contained by Clip with color. |
| 3053 | |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 3054 | #Param color Unpremultiplied ARGB ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3055 | |
| 3056 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3057 | void draw(SkCanvas* canvas) { |
| 3058 | canvas->save(); |
| 3059 | canvas->clipRect(SkRect::MakeWH(256, 128)); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3060 | canvas->clear(SkColorSetARGB(0x80, 0xFF, 0x00, 0x00)); |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3061 | canvas->restore(); |
| 3062 | canvas->save(); |
| 3063 | canvas->clipRect(SkRect::MakeWH(150, 192)); |
| 3064 | canvas->clear(SkColorSetARGB(0x80, 0x00, 0xFF, 0x00)); |
| 3065 | canvas->restore(); |
| 3066 | canvas->clipRect(SkRect::MakeWH(75, 256)); |
| 3067 | canvas->clear(SkColorSetARGB(0x80, 0x00, 0x00, 0xFF)); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3068 | } |
| 3069 | ## |
| 3070 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3071 | #SeeAlso drawColor SkBitmap::erase drawPaint |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3072 | |
| 3073 | ## |
| 3074 | |
| 3075 | # ------------------------------------------------------------------------------ |
| 3076 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3077 | #Method void discard() |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3078 | #In Utility |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3079 | #Line # makes Canvas contents undefined ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3080 | Makes Canvas contents undefined. Subsequent calls that read Canvas pixels, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3081 | such as drawing with SkBlendMode, return undefined results. discard() does |
| 3082 | not change Clip or Matrix. |
| 3083 | |
| 3084 | discard() may do nothing, depending on the implementation of Surface or Device |
| 3085 | that created Canvas. |
| 3086 | |
| 3087 | discard() allows optimized performance on subsequent draws by removing |
| 3088 | cached data associated with Surface or Device. |
| 3089 | It is not necessary to call discard() once done with Canvas; |
| 3090 | any cached data is deleted when owning Surface or Device is deleted. |
| 3091 | |
| 3092 | #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] | 3093 | #SeeAlso flush() SkSurface::prepareForExternalIO GrContext::abandonContext |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3094 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3095 | #NoExample |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3096 | ## |
| 3097 | |
| 3098 | ## |
| 3099 | |
| 3100 | # ------------------------------------------------------------------------------ |
| 3101 | |
| 3102 | #Method void drawPaint(const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3103 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3104 | #Line # fills Clip with Paint ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3105 | Fills Clip with Paint paint. Paint components Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3106 | Color_Filter, Image_Filter, and Blend_Mode affect drawing; |
| 3107 | Path_Effect in paint is ignored. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3108 | |
| 3109 | # can Path_Effect in paint ever alter drawPaint? |
| 3110 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3111 | #Param paint graphics state used to fill Canvas ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3112 | |
| 3113 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3114 | void draw(SkCanvas* canvas) { |
| 3115 | SkColor colors[] = { SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE }; |
| 3116 | SkScalar pos[] = { 0, SK_Scalar1/2, SK_Scalar1 }; |
| 3117 | SkPaint paint; |
| 3118 | paint.setShader(SkGradientShader::MakeSweep(256, 256, colors, pos, SK_ARRAY_COUNT(colors))); |
| 3119 | canvas->drawPaint(paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3120 | } |
| 3121 | ## |
| 3122 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3123 | #SeeAlso clear drawColor SkBitmap::erase |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3124 | |
| 3125 | ## |
| 3126 | |
| 3127 | # ------------------------------------------------------------------------------ |
| 3128 | |
| 3129 | #Enum PointMode |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 3130 | #Line # sets drawPoints options ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3131 | |
| 3132 | #Code |
| 3133 | enum PointMode { |
| 3134 | kPoints_PointMode, |
| 3135 | kLines_PointMode, |
Cary Clark | d0530ba | 2017-09-14 11:25:39 -0400 | [diff] [blame] | 3136 | kPolygon_PointMode, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3137 | }; |
| 3138 | ## |
| 3139 | |
| 3140 | Selects if an array of points are drawn as discrete points, as lines, or as |
| 3141 | an open polygon. |
| 3142 | |
| 3143 | #Const kPoints_PointMode 0 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 3144 | #Line # draw each point separately ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3145 | ## |
| 3146 | |
| 3147 | #Const kLines_PointMode 1 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 3148 | #Line # draw each pair of points as a line segment ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3149 | ## |
| 3150 | |
| 3151 | #Const kPolygon_PointMode 2 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 3152 | #Line # draw the array of points as a open polygon ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3153 | ## |
| 3154 | |
| 3155 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3156 | #Description |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3157 | The upper left corner shows three squares when drawn as points. |
| 3158 | The upper right corner shows one line; when drawn as lines, two points are required per line. |
| 3159 | The lower right corner shows two lines; when draw as polygon, no miter is drawn at the corner. |
| 3160 | The lower left corner shows two lines with a miter when path contains polygon. |
| 3161 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3162 | void draw(SkCanvas* canvas) { |
| 3163 | SkPaint paint; |
| 3164 | paint.setStyle(SkPaint::kStroke_Style); |
| 3165 | paint.setStrokeWidth(10); |
| 3166 | SkPoint points[] = {{64, 32}, {96, 96}, {32, 96}}; |
| 3167 | canvas->drawPoints(SkCanvas::kPoints_PointMode, 3, points, paint); |
| 3168 | canvas->translate(128, 0); |
| 3169 | canvas->drawPoints(SkCanvas::kLines_PointMode, 3, points, paint); |
| 3170 | canvas->translate(0, 128); |
| 3171 | canvas->drawPoints(SkCanvas::kPolygon_PointMode, 3, points, paint); |
| 3172 | SkPath path; |
| 3173 | path.addPoly(points, 3, false); |
| 3174 | canvas->translate(-128, 0); |
| 3175 | canvas->drawPath(path, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3176 | } |
| 3177 | ## |
| 3178 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3179 | #SeeAlso drawLine drawPoint drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3180 | |
| 3181 | ## |
| 3182 | |
| 3183 | # ------------------------------------------------------------------------------ |
| 3184 | |
| 3185 | #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] | 3186 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3187 | #Line # draws array as points, lines, polygon ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3188 | Draws pts using Clip, Matrix and Paint paint. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3189 | 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] | 3190 | mode may be one of: kPoints_PointMode, kLines_PointMode, or kPolygon_PointMode. |
| 3191 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3192 | If mode is kPoints_PointMode, the shape of point drawn depends on paint |
| 3193 | Paint_Stroke_Cap. If paint is set to SkPaint::kRound_Cap, each point draws a |
| 3194 | circle of diameter Paint_Stroke_Width. If paint is set to SkPaint::kSquare_Cap |
| 3195 | or SkPaint::kButt_Cap, each point draws a square of width and height |
| 3196 | Paint_Stroke_Width. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3197 | |
| 3198 | If mode is kLines_PointMode, each pair of points draws a line segment. |
| 3199 | 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] | 3200 | the final point is ignored. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3201 | |
| 3202 | If mode is kPolygon_PointMode, each adjacent pair of points draws a line segment. |
| 3203 | count minus one lines are drawn; the first and last point are used once. |
| 3204 | |
| 3205 | Each line segment respects paint Paint_Stroke_Cap and Paint_Stroke_Width. |
| 3206 | Paint_Style is ignored, as if were set to SkPaint::kStroke_Style. |
| 3207 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3208 | Always draws each element one at a time; is not affected by |
| 3209 | 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] | 3210 | and lines before drawing. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3211 | |
Cary Clark | a523d2d | 2017-08-30 08:58:10 -0400 | [diff] [blame] | 3212 | #Param mode whether pts draws points or lines ## |
| 3213 | #Param count number of points in the array ## |
| 3214 | #Param pts array of points to draw ## |
| 3215 | #Param paint stroke, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3216 | |
| 3217 | #Example |
| 3218 | #Height 200 |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3219 | #Description |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3220 | #List |
| 3221 | # The first column draws points. ## |
| 3222 | # The second column draws points as lines. ## |
| 3223 | # The third column draws points as a polygon. ## |
| 3224 | # The fourth column draws points as a polygonal path. ## |
| 3225 | # The first row uses a round cap and round join. ## |
| 3226 | # The second row uses a square cap and a miter join. ## |
| 3227 | # The third row uses a butt cap and a bevel join. ## |
| 3228 | ## |
| 3229 | The transparent color makes multiple line draws visible; |
| 3230 | the path is drawn all at once. |
| 3231 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3232 | void draw(SkCanvas* canvas) { |
| 3233 | SkPaint paint; |
| 3234 | paint.setAntiAlias(true); |
| 3235 | paint.setStyle(SkPaint::kStroke_Style); |
| 3236 | paint.setStrokeWidth(10); |
| 3237 | paint.setColor(0x80349a45); |
| 3238 | const SkPoint points[] = {{32, 16}, {48, 48}, {16, 32}}; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3239 | const SkPaint::Join join[] = { SkPaint::kRound_Join, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3240 | SkPaint::kMiter_Join, |
| 3241 | SkPaint::kBevel_Join }; |
| 3242 | int joinIndex = 0; |
| 3243 | SkPath path; |
| 3244 | path.addPoly(points, 3, false); |
| 3245 | for (const auto cap : { SkPaint::kRound_Cap, SkPaint::kSquare_Cap, SkPaint::kButt_Cap } ) { |
| 3246 | paint.setStrokeCap(cap); |
| 3247 | paint.setStrokeJoin(join[joinIndex++]); |
| 3248 | for (const auto mode : { SkCanvas::kPoints_PointMode, |
| 3249 | SkCanvas::kLines_PointMode, |
| 3250 | SkCanvas::kPolygon_PointMode } ) { |
| 3251 | canvas->drawPoints(mode, 3, points, paint); |
| 3252 | canvas->translate(64, 0); |
| 3253 | } |
| 3254 | canvas->drawPath(path, paint); |
| 3255 | canvas->translate(-192, 64); |
| 3256 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3257 | } |
| 3258 | ## |
| 3259 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3260 | #SeeAlso drawLine drawPoint drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3261 | |
| 3262 | ## |
| 3263 | |
| 3264 | # ------------------------------------------------------------------------------ |
| 3265 | |
| 3266 | #Method void drawPoint(SkScalar x, SkScalar y, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3267 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3268 | #Line # draws point at (x, y) position ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3269 | Draws point at (x, y) using Clip, Matrix and Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3270 | |
| 3271 | The shape of point drawn depends on paint Paint_Stroke_Cap. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3272 | 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] | 3273 | 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] | 3274 | draw a square of width and height Paint_Stroke_Width. |
| 3275 | Paint_Style is ignored, as if were set to SkPaint::kStroke_Style. |
| 3276 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3277 | #Param x left edge of circle or square ## |
| 3278 | #Param y top edge of circle or square ## |
| 3279 | #Param paint stroke, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3280 | |
| 3281 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3282 | void draw(SkCanvas* canvas) { |
| 3283 | SkPaint paint; |
| 3284 | paint.setAntiAlias(true); |
| 3285 | paint.setColor(0x80349a45); |
| 3286 | paint.setStyle(SkPaint::kStroke_Style); |
| 3287 | paint.setStrokeWidth(100); |
| 3288 | paint.setStrokeCap(SkPaint::kRound_Cap); |
| 3289 | canvas->scale(1, 1.2f); |
| 3290 | canvas->drawPoint(64, 96, paint); |
| 3291 | canvas->scale(.6f, .8f); |
| 3292 | paint.setColor(SK_ColorWHITE); |
| 3293 | canvas->drawPoint(106, 120, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3294 | } |
| 3295 | ## |
| 3296 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3297 | #SeeAlso drawPoints drawCircle drawRect drawLine drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3298 | |
| 3299 | ## |
| 3300 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3301 | #Method void drawPoint(SkPoint p, const SkPaint& paint) |
| 3302 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3303 | Draws point p using Clip, Matrix and Paint paint. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3304 | |
| 3305 | The shape of point drawn depends on paint Paint_Stroke_Cap. |
| 3306 | 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] | 3307 | 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] | 3308 | draw a square of width and height Paint_Stroke_Width. |
| 3309 | Paint_Style is ignored, as if were set to SkPaint::kStroke_Style. |
| 3310 | |
| 3311 | #Param p top-left edge of circle or square ## |
| 3312 | #Param paint stroke, blend, color, and so on, used to draw ## |
| 3313 | |
| 3314 | #Example |
| 3315 | void draw(SkCanvas* canvas) { |
| 3316 | SkPaint paint; |
| 3317 | paint.setAntiAlias(true); |
| 3318 | paint.setColor(0x80349a45); |
| 3319 | paint.setStyle(SkPaint::kStroke_Style); |
| 3320 | paint.setStrokeWidth(100); |
| 3321 | paint.setStrokeCap(SkPaint::kSquare_Cap); |
| 3322 | canvas->scale(1, 1.2f); |
| 3323 | canvas->drawPoint({64, 96}, paint); |
| 3324 | canvas->scale(.6f, .8f); |
| 3325 | paint.setColor(SK_ColorWHITE); |
| 3326 | canvas->drawPoint(106, 120, paint); |
| 3327 | } |
| 3328 | ## |
| 3329 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3330 | #SeeAlso drawPoints drawCircle drawRect drawLine drawPath |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3331 | |
| 3332 | ## |
| 3333 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3334 | # ------------------------------------------------------------------------------ |
| 3335 | |
| 3336 | #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] | 3337 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3338 | #Line # draws line segment between two points ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3339 | Draws line segment from (x0, y0) to (x1, y1) using Clip, Matrix, and Paint paint. |
| 3340 | In paint: Paint_Stroke_Width describes the line thickness; |
| 3341 | Paint_Stroke_Cap draws the end rounded or square; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3342 | Paint_Style is ignored, as if were set to SkPaint::kStroke_Style. |
| 3343 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3344 | #Param x0 start of line segment on x-axis ## |
| 3345 | #Param y0 start of line segment on y-axis ## |
| 3346 | #Param x1 end of line segment on x-axis ## |
| 3347 | #Param y1 end of line segment on y-axis ## |
| 3348 | #Param paint stroke, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3349 | |
| 3350 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3351 | SkPaint paint; |
| 3352 | paint.setAntiAlias(true); |
| 3353 | paint.setColor(0xFF9a67be); |
| 3354 | paint.setStrokeWidth(20); |
| 3355 | canvas->skew(1, 0); |
| 3356 | canvas->drawLine(32, 96, 32, 160, paint); |
| 3357 | canvas->skew(-2, 0); |
| 3358 | canvas->drawLine(288, 96, 288, 160, paint); |
| 3359 | ## |
| 3360 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3361 | #SeeAlso drawPoint drawCircle drawRect drawPath |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3362 | |
| 3363 | ## |
| 3364 | |
| 3365 | #Method void drawLine(SkPoint p0, SkPoint p1, const SkPaint& paint) |
| 3366 | |
| 3367 | Draws line segment from p0 to p1 using Clip, Matrix, and Paint paint. |
| 3368 | In paint: Paint_Stroke_Width describes the line thickness; |
| 3369 | Paint_Stroke_Cap draws the end rounded or square; |
| 3370 | Paint_Style is ignored, as if were set to SkPaint::kStroke_Style. |
| 3371 | |
| 3372 | #Param p0 start of line segment ## |
| 3373 | #Param p1 end of line segment ## |
| 3374 | #Param paint stroke, blend, color, and so on, used to draw ## |
| 3375 | |
| 3376 | #Example |
| 3377 | SkPaint paint; |
| 3378 | paint.setAntiAlias(true); |
| 3379 | paint.setColor(0xFF9a67be); |
| 3380 | paint.setStrokeWidth(20); |
| 3381 | canvas->skew(1, 0); |
| 3382 | canvas->drawLine({32, 96}, {32, 160}, paint); |
| 3383 | canvas->skew(-2, 0); |
| 3384 | canvas->drawLine({288, 96}, {288, 160}, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3385 | ## |
| 3386 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3387 | #SeeAlso drawPoint drawCircle drawRect drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3388 | |
| 3389 | ## |
| 3390 | |
| 3391 | # ------------------------------------------------------------------------------ |
| 3392 | |
| 3393 | #Method void drawRect(const SkRect& rect, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3394 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3395 | #Line # draws Rect using Clip, Matrix, and Paint ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3396 | Draws Rect rect using Clip, Matrix, and Paint paint. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3397 | In paint: Paint_Style determines if rectangle is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3398 | if stroked, Paint_Stroke_Width describes the line thickness, and |
| 3399 | Paint_Stroke_Join draws the corners rounded or square. |
| 3400 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 3401 | #Param rect rectangle to draw ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3402 | #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] | 3403 | |
| 3404 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3405 | void draw(SkCanvas* canvas) { |
| 3406 | SkPoint rectPts[] = { {64, 48}, {192, 160} }; |
| 3407 | SkPaint paint; |
| 3408 | paint.setAntiAlias(true); |
| 3409 | paint.setStyle(SkPaint::kStroke_Style); |
| 3410 | paint.setStrokeWidth(20); |
| 3411 | paint.setStrokeJoin(SkPaint::kRound_Join); |
| 3412 | SkMatrix rotator; |
| 3413 | rotator.setRotate(30, 128, 128); |
| 3414 | for (auto color : { SK_ColorRED, SK_ColorBLUE, SK_ColorYELLOW, SK_ColorMAGENTA } ) { |
| 3415 | paint.setColor(color); |
| 3416 | SkRect rect; |
| 3417 | rect.set(rectPts[0], rectPts[1]); |
| 3418 | canvas->drawRect(rect, paint); |
| 3419 | rotator.mapPoints(rectPts, 2); |
| 3420 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3421 | } |
| 3422 | ## |
| 3423 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3424 | #SeeAlso drawIRect drawRRect drawRoundRect drawRegion drawPath drawLine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3425 | |
| 3426 | ## |
| 3427 | |
| 3428 | # ------------------------------------------------------------------------------ |
| 3429 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3430 | #Method void drawIRect(const SkIRect& rect, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3431 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3432 | #Line # draws IRect using Clip, Matrix, and Paint ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3433 | Draws IRect rect using Clip, Matrix, and Paint paint. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3434 | In paint: Paint_Style determines if rectangle is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3435 | if stroked, Paint_Stroke_Width describes the line thickness, and |
| 3436 | Paint_Stroke_Join draws the corners rounded or square. |
| 3437 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 3438 | #Param rect rectangle to draw ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3439 | #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] | 3440 | |
| 3441 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3442 | SkIRect rect = { 64, 48, 192, 160 }; |
| 3443 | SkPaint paint; |
| 3444 | paint.setAntiAlias(true); |
| 3445 | paint.setStyle(SkPaint::kStroke_Style); |
| 3446 | paint.setStrokeWidth(20); |
| 3447 | paint.setStrokeJoin(SkPaint::kRound_Join); |
| 3448 | for (auto color : { SK_ColorRED, SK_ColorBLUE, SK_ColorYELLOW, SK_ColorMAGENTA } ) { |
| 3449 | paint.setColor(color); |
| 3450 | canvas->drawIRect(rect, paint); |
| 3451 | canvas->rotate(30, 128, 128); |
| 3452 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3453 | ## |
| 3454 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3455 | #SeeAlso drawRect drawRRect drawRoundRect drawRegion drawPath drawLine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3456 | |
| 3457 | ## |
| 3458 | |
| 3459 | # ------------------------------------------------------------------------------ |
| 3460 | |
| 3461 | #Method void drawRegion(const SkRegion& region, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3462 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3463 | #Line # draws Region using Clip, Matrix, and Paint ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3464 | Draws Region region using Clip, Matrix, and Paint paint. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3465 | In paint: Paint_Style determines if rectangle is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3466 | if stroked, Paint_Stroke_Width describes the line thickness, and |
| 3467 | Paint_Stroke_Join draws the corners rounded or square. |
| 3468 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 3469 | #Param region region to draw ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3470 | #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] | 3471 | |
| 3472 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3473 | void draw(SkCanvas* canvas) { |
| 3474 | SkRegion region; |
| 3475 | region.op( 10, 10, 50, 50, SkRegion::kUnion_Op); |
| 3476 | region.op( 10, 50, 90, 90, SkRegion::kUnion_Op); |
| 3477 | SkPaint paint; |
| 3478 | paint.setAntiAlias(true); |
| 3479 | paint.setStyle(SkPaint::kStroke_Style); |
| 3480 | paint.setStrokeWidth(20); |
| 3481 | paint.setStrokeJoin(SkPaint::kRound_Join); |
| 3482 | canvas->drawRegion(region, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3483 | } |
| 3484 | ## |
| 3485 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3486 | #SeeAlso drawRect drawIRect drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3487 | |
| 3488 | ## |
| 3489 | |
| 3490 | # ------------------------------------------------------------------------------ |
| 3491 | |
| 3492 | #Method void drawOval(const SkRect& oval, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3493 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3494 | #Line # draws Oval using Clip, Matrix, and Paint ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3495 | Draws Oval oval using Clip, Matrix, and Paint. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3496 | In paint: Paint_Style determines if Oval is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3497 | if stroked, Paint_Stroke_Width describes the line thickness. |
| 3498 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3499 | #Param oval Rect bounds of Oval ## |
| 3500 | #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] | 3501 | |
| 3502 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3503 | void draw(SkCanvas* canvas) { |
| 3504 | canvas->clear(0xFF3f5f9f); |
| 3505 | SkColor kColor1 = SkColorSetARGB(0xff, 0xff, 0x7f, 0); |
| 3506 | SkColor g1Colors[] = { kColor1, SkColorSetA(kColor1, 0x20) }; |
| 3507 | SkPoint g1Points[] = { { 0, 0 }, { 0, 100 } }; |
| 3508 | SkScalar pos[] = { 0.2f, 1.0f }; |
| 3509 | SkRect bounds = SkRect::MakeWH(80, 70); |
| 3510 | SkPaint paint; |
| 3511 | paint.setAntiAlias(true); |
| 3512 | paint.setShader(SkGradientShader::MakeLinear(g1Points, g1Colors, pos, SK_ARRAY_COUNT(g1Colors), |
| 3513 | SkShader::kClamp_TileMode)); |
| 3514 | canvas->drawOval(bounds , paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3515 | } |
| 3516 | ## |
| 3517 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3518 | #SeeAlso drawCircle drawPoint drawPath drawRRect drawRoundRect |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3519 | |
| 3520 | ## |
| 3521 | |
| 3522 | # ------------------------------------------------------------------------------ |
| 3523 | |
| 3524 | #Method void drawRRect(const SkRRect& rrect, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3525 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3526 | #Line # draws Round_Rect using Clip, Matrix, and Paint ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3527 | Draws Round_Rect rrect using Clip, Matrix, and Paint paint. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3528 | In paint: Paint_Style determines if rrect is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3529 | if stroked, Paint_Stroke_Width describes the line thickness. |
| 3530 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3531 | rrect may represent a rectangle, circle, oval, uniformly rounded rectangle, or |
| 3532 | 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] | 3533 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3534 | #Param rrect Round_Rect with up to eight corner radii to draw ## |
| 3535 | #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] | 3536 | |
| 3537 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3538 | void draw(SkCanvas* canvas) { |
| 3539 | SkPaint paint; |
| 3540 | paint.setAntiAlias(true); |
| 3541 | SkRect outer = {30, 40, 210, 220}; |
| 3542 | SkRect radii = {30, 50, 70, 90 }; |
| 3543 | SkRRect rRect; |
| 3544 | rRect.setNinePatch(outer, radii.fLeft, radii.fTop, radii.fRight, radii.fBottom); |
| 3545 | canvas->drawRRect(rRect, paint); |
| 3546 | paint.setColor(SK_ColorWHITE); |
| 3547 | canvas->drawLine(outer.fLeft + radii.fLeft, outer.fTop, |
| 3548 | outer.fLeft + radii.fLeft, outer.fBottom, paint); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3549 | canvas->drawLine(outer.fRight - radii.fRight, outer.fTop, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3550 | outer.fRight - radii.fRight, outer.fBottom, paint); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3551 | canvas->drawLine(outer.fLeft, outer.fTop + radii.fTop, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3552 | outer.fRight, outer.fTop + radii.fTop, paint); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3553 | canvas->drawLine(outer.fLeft, outer.fBottom - radii.fBottom, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3554 | outer.fRight, outer.fBottom - radii.fBottom, paint); |
| 3555 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3556 | ## |
| 3557 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3558 | #SeeAlso drawRect drawRoundRect drawDRRect drawCircle drawOval drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3559 | |
| 3560 | ## |
| 3561 | |
| 3562 | # ------------------------------------------------------------------------------ |
| 3563 | |
| 3564 | #Method void drawDRRect(const SkRRect& outer, const SkRRect& inner, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3565 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3566 | #Line # draws double Round_Rect stroked or filled ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3567 | Draws Round_Rect outer and inner |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3568 | using Clip, Matrix, and Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3569 | outer must contain inner or the drawing is undefined. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3570 | In paint: Paint_Style determines if Round_Rect is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3571 | if stroked, Paint_Stroke_Width describes the line thickness. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3572 | 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] | 3573 | draw corners rounded or square. |
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 | GPU-backed platforms optimize drawing when both outer and inner are |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3576 | 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] | 3577 | Path built with identical data as fast. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3578 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3579 | #Param outer Round_Rect outer bounds to draw ## |
| 3580 | #Param inner Round_Rect inner bounds to draw ## |
| 3581 | #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] | 3582 | |
| 3583 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3584 | void draw(SkCanvas* canvas) { |
| 3585 | SkRRect outer = SkRRect::MakeRect({20, 40, 210, 200}); |
| 3586 | SkRRect inner = SkRRect::MakeOval({60, 70, 170, 160}); |
| 3587 | SkPaint paint; |
| 3588 | canvas->drawDRRect(outer, inner, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3589 | } |
| 3590 | ## |
| 3591 | |
| 3592 | #Example |
| 3593 | #Description |
| 3594 | Outer Rect has no corner radii, but stroke join is rounded. |
| 3595 | Inner Round_Rect has corner radii; outset stroke increases radii of corners. |
| 3596 | Stroke join does not affect inner Round_Rect since it has no sharp corners. |
| 3597 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3598 | void draw(SkCanvas* canvas) { |
| 3599 | SkRRect outer = SkRRect::MakeRect({20, 40, 210, 200}); |
| 3600 | SkRRect inner = SkRRect::MakeRectXY({60, 70, 170, 160}, 10, 10); |
| 3601 | SkPaint paint; |
| 3602 | paint.setAntiAlias(true); |
| 3603 | paint.setStyle(SkPaint::kStroke_Style); |
| 3604 | paint.setStrokeWidth(20); |
| 3605 | paint.setStrokeJoin(SkPaint::kRound_Join); |
| 3606 | canvas->drawDRRect(outer, inner, paint); |
| 3607 | paint.setStrokeWidth(1); |
| 3608 | paint.setColor(SK_ColorWHITE); |
| 3609 | canvas->drawDRRect(outer, inner, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3610 | } |
| 3611 | ## |
| 3612 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3613 | #SeeAlso drawRect drawRoundRect drawRRect drawCircle drawOval drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3614 | |
| 3615 | ## |
| 3616 | |
| 3617 | # ------------------------------------------------------------------------------ |
| 3618 | |
| 3619 | #Method void drawCircle(SkScalar cx, SkScalar cy, SkScalar radius, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3620 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3621 | #Line # draws Circle using Clip, Matrix, and Paint ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3622 | Draws Circle at (cx, cy) with radius using Clip, Matrix, and Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3623 | If radius is zero or less, nothing is drawn. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3624 | In paint: Paint_Style determines if Circle is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3625 | if stroked, Paint_Stroke_Width describes the line thickness. |
| 3626 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3627 | #Param cx Circle center on the x-axis ## |
| 3628 | #Param cy Circle center on the y-axis ## |
| 3629 | #Param radius half the diameter of Circle ## |
| 3630 | #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] | 3631 | |
| 3632 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3633 | void draw(SkCanvas* canvas) { |
| 3634 | SkPaint paint; |
| 3635 | paint.setAntiAlias(true); |
| 3636 | canvas->drawCircle(128, 128, 90, paint); |
| 3637 | paint.setColor(SK_ColorWHITE); |
| 3638 | canvas->drawCircle(86, 86, 20, paint); |
| 3639 | canvas->drawCircle(160, 76, 20, paint); |
| 3640 | canvas->drawCircle(140, 150, 35, paint); |
| 3641 | } |
| 3642 | ## |
| 3643 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3644 | #SeeAlso drawOval drawRRect drawRoundRect drawPath drawArc drawPoint drawLine |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3645 | |
| 3646 | ## |
| 3647 | |
| 3648 | #Method void drawCircle(SkPoint center, SkScalar radius, const SkPaint& paint) |
| 3649 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3650 | Draws Circle at center with radius using Clip, Matrix, and Paint paint. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3651 | If radius is zero or less, nothing is drawn. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3652 | In paint: Paint_Style determines if Circle is stroked or filled; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3653 | if stroked, Paint_Stroke_Width describes the line thickness. |
| 3654 | |
| 3655 | #Param center Circle center ## |
| 3656 | #Param radius half the diameter of Circle ## |
| 3657 | #Param paint Paint stroke or fill, blend, color, and so on, used to draw ## |
| 3658 | |
| 3659 | #Example |
| 3660 | void draw(SkCanvas* canvas) { |
| 3661 | SkPaint paint; |
| 3662 | paint.setAntiAlias(true); |
| 3663 | canvas->drawCircle(128, 128, 90, paint); |
| 3664 | paint.setColor(SK_ColorWHITE); |
| 3665 | canvas->drawCircle({86, 86}, 20, paint); |
| 3666 | canvas->drawCircle({160, 76}, 20, paint); |
| 3667 | canvas->drawCircle({140, 150}, 35, paint); |
| 3668 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3669 | ## |
| 3670 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3671 | #SeeAlso drawOval drawRRect drawRoundRect drawPath drawArc drawPoint drawLine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3672 | |
| 3673 | ## |
| 3674 | |
| 3675 | # ------------------------------------------------------------------------------ |
| 3676 | |
| 3677 | #Method void drawArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, |
| 3678 | bool useCenter, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3679 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3680 | #Line # draws Arc using Clip, Matrix, and Paint ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3681 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3682 | Draws Arc using Clip, Matrix, and Paint paint. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3683 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3684 | Arc is part of Oval bounded by oval, sweeping from startAngle to startAngle plus |
| 3685 | sweepAngle. startAngle and sweepAngle are in degrees. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3686 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3687 | startAngle of zero places start point at the right middle edge of oval. |
| 3688 | A positive sweepAngle places Arc end point clockwise from start point; |
| 3689 | a negative sweepAngle places Arc end point counterclockwise from start point. |
| 3690 | sweepAngle may exceed 360 degrees, a full circle. |
| 3691 | If useCenter is true, draw a wedge that includes lines from oval |
| 3692 | center to Arc end points. If useCenter is false, draw Arc between end points. |
| 3693 | |
| 3694 | If Rect oval is empty or sweepAngle is zero, nothing is drawn. |
| 3695 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3696 | #Param oval Rect bounds of Oval containing Arc to draw ## |
| 3697 | #Param startAngle angle in degrees where Arc begins ## |
| 3698 | #Param sweepAngle sweep angle in degrees; positive is clockwise ## |
| 3699 | #Param useCenter if true, include the center of the oval ## |
| 3700 | #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] | 3701 | |
| 3702 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3703 | void draw(SkCanvas* canvas) { |
| 3704 | SkPaint paint; |
| 3705 | paint.setAntiAlias(true); |
| 3706 | SkRect oval = { 4, 4, 60, 60}; |
| 3707 | for (auto useCenter : { false, true } ) { |
| 3708 | for (auto style : { SkPaint::kFill_Style, SkPaint::kStroke_Style } ) { |
| 3709 | paint.setStyle(style); |
| 3710 | for (auto degrees : { 45, 90, 180, 360} ) { |
| 3711 | canvas->drawArc(oval, 0, degrees , useCenter, paint); |
| 3712 | canvas->translate(64, 0); |
| 3713 | } |
| 3714 | canvas->translate(-256, 64); |
| 3715 | } |
| 3716 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3717 | } |
| 3718 | ## |
| 3719 | |
| 3720 | #Example |
| 3721 | #Height 64 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3722 | void draw(SkCanvas* canvas) { |
| 3723 | SkPaint paint; |
| 3724 | paint.setAntiAlias(true); |
| 3725 | paint.setStyle(SkPaint::kStroke_Style); |
| 3726 | paint.setStrokeWidth(4); |
| 3727 | SkRect oval = { 4, 4, 60, 60}; |
| 3728 | float intervals[] = { 5, 5 }; |
| 3729 | paint.setPathEffect(SkDashPathEffect::Make(intervals, 2, 2.5f)); |
| 3730 | for (auto degrees : { 270, 360, 540, 720 } ) { |
| 3731 | canvas->drawArc(oval, 0, degrees, false, paint); |
| 3732 | canvas->translate(64, 0); |
| 3733 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3734 | } |
| 3735 | ## |
| 3736 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3737 | #SeeAlso SkPath::arcTo drawCircle drawOval drawPath |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3738 | |
| 3739 | ## |
| 3740 | |
| 3741 | # ------------------------------------------------------------------------------ |
| 3742 | |
| 3743 | #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] | 3744 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3745 | #Line # draws Round_Rect using Clip, Matrix, and Paint ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3746 | Draws Round_Rect bounded by Rect rect, with corner radii (rx, ry) using Clip, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3747 | Matrix, and Paint paint. |
| 3748 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3749 | In paint: Paint_Style determines if Round_Rect is stroked or filled; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3750 | if stroked, Paint_Stroke_Width describes the line thickness. |
| 3751 | If rx or ry are less than zero, they are treated as if they are zero. |
| 3752 | 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] | 3753 | If rx and ry are zero, Round_Rect is drawn as Rect and if stroked is affected by |
| 3754 | Paint_Stroke_Join. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3755 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3756 | #Param rect Rect bounds of Round_Rect to draw ## |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 3757 | #Param rx axis length on x-axis of oval describing rounded corners ## |
| 3758 | #Param ry axis length on y-axis of oval describing rounded corners ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3759 | #Param paint stroke, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3760 | |
| 3761 | #Example |
| 3762 | #Description |
| 3763 | Top row has a zero radius a generates a rectangle. |
| 3764 | Second row radii sum to less than sides. |
| 3765 | Third row radii sum equals sides. |
| 3766 | Fourth row radii sum exceeds sides; radii are scaled to fit. |
| 3767 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3768 | void draw(SkCanvas* canvas) { |
| 3769 | SkVector radii[] = { {0, 20}, {10, 10}, {10, 20}, {10, 40} }; |
| 3770 | SkPaint paint; |
| 3771 | paint.setStrokeWidth(15); |
| 3772 | paint.setStrokeJoin(SkPaint::kRound_Join); |
| 3773 | paint.setAntiAlias(true); |
| 3774 | for (auto style : { SkPaint::kStroke_Style, SkPaint::kFill_Style } ) { |
| 3775 | paint.setStyle(style ); |
| 3776 | for (size_t i = 0; i < SK_ARRAY_COUNT(radii); ++i) { |
| 3777 | canvas->drawRoundRect({10, 10, 60, 40}, radii[i].fX, radii[i].fY, paint); |
| 3778 | canvas->translate(0, 60); |
| 3779 | } |
| 3780 | canvas->translate(80, -240); |
| 3781 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3782 | } |
| 3783 | ## |
| 3784 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3785 | #SeeAlso DrawRRect drawRect drawDRRect drawPath drawCircle drawOval drawPoint |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3786 | |
| 3787 | ## |
| 3788 | |
| 3789 | # ------------------------------------------------------------------------------ |
| 3790 | |
| 3791 | #Method void drawPath(const SkPath& path, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3792 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3793 | #Line # draws Path using Clip, Matrix, and Paint ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3794 | Draws Path path using Clip, Matrix, and Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3795 | Path contains an array of Path_Contour, each of which may be open or closed. |
| 3796 | |
| 3797 | In paint: Paint_Style determines if Round_Rect is stroked or filled: |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3798 | if filled, Path_Fill_Type determines whether Path_Contour describes inside or |
| 3799 | outside of fill; if stroked, Paint_Stroke_Width describes the line thickness, |
| 3800 | Paint_Stroke_Cap describes line ends, and Paint_Stroke_Join describes how |
| 3801 | corners are drawn. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3802 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3803 | #Param path Path to draw ## |
| 3804 | #Param paint stroke, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3805 | |
| 3806 | #Example |
| 3807 | #Description |
| 3808 | Top rows draw stroked path with combinations of joins and caps. The open contour |
| 3809 | is affected by caps; the closed contour is affected by joins. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3810 | Bottom row draws fill the same for open and closed contour. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3811 | First bottom column shows winding fills overlap. |
| 3812 | Second bottom column shows even odd fills exclude overlap. |
| 3813 | Third bottom column shows inverse winding fills area outside both contours. |
| 3814 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3815 | void draw(SkCanvas* canvas) { |
| 3816 | SkPath path; |
| 3817 | path.moveTo(20, 20); |
| 3818 | path.quadTo(60, 20, 60, 60); |
| 3819 | path.close(); |
| 3820 | path.moveTo(60, 20); |
| 3821 | path.quadTo(60, 60, 20, 60); |
| 3822 | SkPaint paint; |
| 3823 | paint.setStrokeWidth(10); |
| 3824 | paint.setAntiAlias(true); |
| 3825 | paint.setStyle(SkPaint::kStroke_Style); |
| 3826 | for (auto join: { SkPaint::kBevel_Join, SkPaint::kRound_Join, SkPaint::kMiter_Join } ) { |
| 3827 | paint.setStrokeJoin(join); |
| 3828 | for (auto cap: { SkPaint::kButt_Cap, SkPaint::kSquare_Cap, SkPaint::kRound_Cap } ) { |
| 3829 | paint.setStrokeCap(cap); |
| 3830 | canvas->drawPath(path, paint); |
| 3831 | canvas->translate(80, 0); |
| 3832 | } |
| 3833 | canvas->translate(-240, 60); |
| 3834 | } |
| 3835 | paint.setStyle(SkPaint::kFill_Style); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3836 | for (auto fill : { SkPath::kWinding_FillType, |
| 3837 | SkPath::kEvenOdd_FillType, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3838 | SkPath::kInverseWinding_FillType } ) { |
| 3839 | path.setFillType(fill); |
| 3840 | canvas->save(); |
| 3841 | canvas->clipRect({0, 10, 80, 70}); |
| 3842 | canvas->drawPath(path, paint); |
| 3843 | canvas->restore(); |
| 3844 | canvas->translate(80, 0); |
| 3845 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3846 | } |
| 3847 | ## |
| 3848 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3849 | #SeeAlso SkPath drawLine drawArc drawRect drawPoints |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3850 | |
| 3851 | ## |
| 3852 | |
| 3853 | # ------------------------------------------------------------------------------ |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 3854 | #Subtopic Draw_Image |
| 3855 | #Line # draws Image to Canvas ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3856 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3857 | drawImage, drawImageRect, and drawImageNine can be called with a bare pointer or |
| 3858 | 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] | 3859 | |
Cary Clark | 73fa972 | 2017-08-29 17:36:51 -0400 | [diff] [blame] | 3860 | #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] | 3861 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 3862 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 3863 | #Line # draws Image at (x, y) position ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3864 | Draws Image image, with its top-left corner at (left, top), |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3865 | using Clip, Matrix, and optional Paint paint. |
| 3866 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3867 | If paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, Blend_Mode, |
| 3868 | and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 3869 | If paint contains Mask_Filter, generate mask from image bounds. If generated |
| 3870 | mask extends beyond image bounds, replicate image edge colors, just as Shader |
| 3871 | made from SkImage::makeShader with SkShader::kClamp_TileMode set replicates the |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3872 | image edge color when it samples outside of its bounds. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3873 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3874 | #Param image uncompressed rectangular map of pixels ## |
| 3875 | #Param left left side of image ## |
| 3876 | #Param top top side of image ## |
| 3877 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 3878 | and so on; or nullptr |
| 3879 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3880 | |
| 3881 | #Example |
| 3882 | #Height 64 |
| 3883 | #Image 4 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3884 | void draw(SkCanvas* canvas) { |
| 3885 | // sk_sp<SkImage> image; |
| 3886 | SkImage* imagePtr = image.get(); |
| 3887 | canvas->drawImage(imagePtr, 0, 0); |
| 3888 | SkPaint paint; |
| 3889 | canvas->drawImage(imagePtr, 80, 0, &paint); |
| 3890 | paint.setAlpha(0x80); |
| 3891 | canvas->drawImage(imagePtr, 160, 0, &paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3892 | } |
| 3893 | ## |
| 3894 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3895 | #SeeAlso drawBitmap drawImageLattice drawImageNine drawImageRect SkPaint::setImageFilter |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3896 | |
| 3897 | ## |
| 3898 | |
| 3899 | # ------------------------------------------------------------------------------ |
| 3900 | |
| 3901 | #Method void drawImage(const sk_sp<SkImage>& image, SkScalar left, SkScalar top, |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3902 | const SkPaint* paint = nullptr) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3903 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 3904 | Draws Image image, with its top-left corner at (left, top), |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3905 | using Clip, Matrix, and optional Paint paint. |
| 3906 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3907 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 3908 | Blend_Mode, and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 3909 | If paint contains Mask_Filter, generate mask from image bounds. If generated |
| 3910 | mask extends beyond image bounds, replicate image edge colors, just as Shader |
| 3911 | made from SkImage::makeShader with SkShader::kClamp_TileMode set replicates the |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3912 | image edge color when it samples outside of its bounds. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3913 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3914 | #Param image uncompressed rectangular map of pixels ## |
| 3915 | #Param left left side of image ## |
| 3916 | #Param top pop side of image ## |
| 3917 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 3918 | and so on; or nullptr |
| 3919 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3920 | |
| 3921 | #Example |
| 3922 | #Height 64 |
| 3923 | #Image 4 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3924 | void draw(SkCanvas* canvas) { |
| 3925 | // sk_sp<SkImage> image; |
| 3926 | canvas->drawImage(image, 0, 0); |
| 3927 | SkPaint paint; |
| 3928 | canvas->drawImage(image, 80, 0, &paint); |
| 3929 | paint.setAlpha(0x80); |
| 3930 | canvas->drawImage(image, 160, 0, &paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3931 | } |
| 3932 | ## |
| 3933 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 3934 | #SeeAlso drawBitmap drawImageLattice drawImageNine drawImageRect SkPaint::setImageFilter |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3935 | |
| 3936 | ## |
| 3937 | |
| 3938 | # ------------------------------------------------------------------------------ |
| 3939 | |
| 3940 | #Enum SrcRectConstraint |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 3941 | #Line # sets drawImageRect options ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3942 | |
| 3943 | #Code |
| 3944 | enum SrcRectConstraint { |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 3945 | kStrict_SrcRectConstraint, |
| 3946 | kFast_SrcRectConstraint, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3947 | }; |
| 3948 | ## |
| 3949 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 3950 | SrcRectConstraint controls the behavior at the edge of source Rect, |
| 3951 | provided to drawImageRect, trading off speed for precision. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3952 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 3953 | 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] | 3954 | 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] | 3955 | 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] | 3956 | SrcRectConstraint specifies whether an Image_Filter is allowed to read pixels |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 3957 | outside source Rect. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3958 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 3959 | #Const kStrict_SrcRectConstraint 0 |
| 3960 | #Line # sample only inside bounds; slower ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 3961 | Requires Image_Filter to respect source Rect, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3962 | sampling only inside of its bounds, possibly with a performance penalty. |
| 3963 | ## |
| 3964 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 3965 | #Const kFast_SrcRectConstraint 1 |
| 3966 | #Line # sample outside bounds; faster ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 3967 | Permits Image_Filter to sample outside of source Rect |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3968 | by half the width of Image_Filter, permitting it to run faster but with |
| 3969 | error at the image edges. |
| 3970 | ## |
| 3971 | |
| 3972 | #Example |
| 3973 | #Height 64 |
| 3974 | #Description |
| 3975 | redBorder contains a black and white checkerboard bordered by red. |
| 3976 | redBorder is drawn scaled by 16 on the left. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 3977 | The middle and right bitmaps are filtered checkerboards. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 3978 | Drawing the checkerboard with kStrict_SrcRectConstraint shows only a blur of black and white. |
| 3979 | Drawing the checkerboard with kFast_SrcRectConstraint allows red to bleed in the corners. |
| 3980 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 3981 | void draw(SkCanvas* canvas) { |
| 3982 | SkBitmap redBorder; |
| 3983 | redBorder.allocPixels(SkImageInfo::MakeN32Premul(4, 4)); |
| 3984 | SkCanvas checkRed(redBorder); |
| 3985 | checkRed.clear(SK_ColorRED); |
| 3986 | uint32_t checkers[][2] = { { SK_ColorBLACK, SK_ColorWHITE }, |
| 3987 | { SK_ColorWHITE, SK_ColorBLACK } }; |
| 3988 | checkRed.writePixels( |
| 3989 | SkImageInfo::MakeN32Premul(2, 2), (void*) checkers, sizeof(checkers[0]), 1, 1); |
| 3990 | canvas->scale(16, 16); |
| 3991 | canvas->drawBitmap(redBorder, 0, 0, nullptr); |
| 3992 | canvas->resetMatrix(); |
| 3993 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(redBorder); |
| 3994 | SkPaint lowPaint; |
| 3995 | lowPaint.setFilterQuality(kLow_SkFilterQuality); |
| 3996 | for (auto constraint : { SkCanvas::kStrict_SrcRectConstraint, |
| 3997 | SkCanvas::kFast_SrcRectConstraint } ) { |
| 3998 | canvas->translate(80, 0); |
| 3999 | canvas->drawImageRect(image.get(), SkRect::MakeLTRB(1, 1, 3, 3), |
| 4000 | SkRect::MakeLTRB(16, 16, 48, 48), &lowPaint, constraint); |
| 4001 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4002 | } |
| 4003 | ## |
| 4004 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4005 | #SeeAlso drawImageRect drawImage SkPaint::setImageFilter |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4006 | |
| 4007 | ## |
| 4008 | |
| 4009 | # ------------------------------------------------------------------------------ |
| 4010 | |
| 4011 | #Method void drawImageRect(const SkImage* image, const SkRect& src, const SkRect& dst, |
| 4012 | const SkPaint* paint, |
| 4013 | SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4014 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4015 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4016 | #Line # draws Image, source Rect to destination Rect ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4017 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 4018 | Draws Rect src of Image image, scaled and translated to fill Rect dst. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4019 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4020 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4021 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4022 | Blend_Mode, and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 4023 | If paint contains Mask_Filter, generate mask from image bounds. |
| 4024 | |
| 4025 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4026 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4027 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4028 | |
| 4029 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
| 4030 | sample within src; set to kFast_SrcRectConstraint allows sampling outside to |
| 4031 | improve performance. |
| 4032 | |
| 4033 | #Param image Image containing pixels, dimensions, and format ## |
| 4034 | #Param src source Rect of image to draw from ## |
| 4035 | #Param dst destination Rect of image to draw to ## |
| 4036 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4037 | and so on; or nullptr |
| 4038 | ## |
| 4039 | #Param constraint filter strictly within src or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4040 | |
| 4041 | #Example |
| 4042 | #Height 64 |
| 4043 | #Description |
| 4044 | The left bitmap draws with Paint default kNone_SkFilterQuality, and stays within |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4045 | its bounds; there is no bleeding with kFast_SrcRectConstraint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4046 | the middle and right bitmaps draw with kLow_SkFilterQuality; with |
| 4047 | kStrict_SrcRectConstraint, the filter remains within the checkerboard, and |
| 4048 | with kFast_SrcRectConstraint red bleeds on the edges. |
| 4049 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4050 | void draw(SkCanvas* canvas) { |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4051 | uint32_t pixels[][4] = { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4052 | { 0xFFFF0000, 0xFFFF0000, 0xFFFF0000, 0xFFFF0000 }, |
| 4053 | { 0xFFFF0000, 0xFF000000, 0xFFFFFFFF, 0xFFFF0000 }, |
| 4054 | { 0xFFFF0000, 0xFFFFFFFF, 0xFF000000, 0xFFFF0000 }, |
| 4055 | { 0xFFFF0000, 0xFFFF0000, 0xFFFF0000, 0xFFFF0000 } }; |
| 4056 | SkBitmap redBorder; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4057 | redBorder.installPixels(SkImageInfo::MakeN32Premul(4, 4), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4058 | (void*) pixels, sizeof(pixels[0])); |
| 4059 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(redBorder); |
| 4060 | SkPaint lowPaint; |
| 4061 | for (auto constraint : { |
| 4062 | SkCanvas::kFast_SrcRectConstraint, |
| 4063 | SkCanvas::kStrict_SrcRectConstraint, |
| 4064 | SkCanvas::kFast_SrcRectConstraint } ) { |
| 4065 | canvas->drawImageRect(image.get(), SkRect::MakeLTRB(1, 1, 3, 3), |
| 4066 | SkRect::MakeLTRB(16, 16, 48, 48), &lowPaint, constraint); |
| 4067 | lowPaint.setFilterQuality(kLow_SkFilterQuality); |
| 4068 | canvas->translate(80, 0); |
| 4069 | } |
| 4070 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4071 | ## |
| 4072 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4073 | #SeeAlso SrcRectConstraint drawImage drawImageLattice drawImageNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4074 | |
| 4075 | ## |
| 4076 | |
| 4077 | # ------------------------------------------------------------------------------ |
| 4078 | |
| 4079 | #Method void drawImageRect(const SkImage* image, const SkIRect& isrc, const SkRect& dst, |
| 4080 | const SkPaint* paint, SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4081 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4082 | #In Draw |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4083 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 4084 | Draws IRect isrc of Image image, scaled and translated to fill Rect dst. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4085 | Note that isrc is on integer pixel boundaries; dst may include fractional |
| 4086 | boundaries. Additionally transform draw using Clip, Matrix, and optional Paint |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4087 | paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4088 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4089 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4090 | Blend_Mode, and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 4091 | If paint contains Mask_Filter, generate mask from image bounds. |
| 4092 | |
| 4093 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4094 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4095 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4096 | |
| 4097 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4098 | sample within isrc; set to kFast_SrcRectConstraint allows sampling outside to |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4099 | improve performance. |
| 4100 | |
| 4101 | #Param image Image containing pixels, dimensions, and format ## |
| 4102 | #Param isrc source IRect of image to draw from ## |
| 4103 | #Param dst destination Rect of image to draw to ## |
| 4104 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4105 | and so on; or nullptr |
| 4106 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4107 | #Param constraint filter strictly within isrc or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4108 | |
| 4109 | #Example |
| 4110 | #Image 4 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4111 | void draw(SkCanvas* canvas) { |
| 4112 | // sk_sp<SkImage> image; |
| 4113 | for (auto i : { 1, 2, 4, 8 } ) { |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4114 | canvas->drawImageRect(image.get(), SkIRect::MakeLTRB(0, 0, 100, 100), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4115 | SkRect::MakeXYWH(i * 20, i * 20, i * 20, i * 20), nullptr); |
| 4116 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4117 | } |
| 4118 | ## |
| 4119 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4120 | #SeeAlso SrcRectConstraint drawImage drawImageLattice drawImageNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4121 | |
| 4122 | ## |
| 4123 | |
| 4124 | # ------------------------------------------------------------------------------ |
| 4125 | |
| 4126 | #Method void drawImageRect(const SkImage* image, const SkRect& dst, const SkPaint* paint, |
| 4127 | SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4128 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4129 | #In Draw |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4130 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 4131 | Draws Image image, scaled and translated to fill Rect dst, using Clip, Matrix, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4132 | and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4133 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4134 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4135 | Blend_Mode, and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 4136 | If paint contains Mask_Filter, generate mask from image bounds. |
| 4137 | |
| 4138 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4139 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4140 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4141 | |
| 4142 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4143 | sample within image; set to kFast_SrcRectConstraint allows sampling outside to |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4144 | improve performance. |
| 4145 | |
| 4146 | #Param image Image containing pixels, dimensions, and format ## |
| 4147 | #Param dst destination Rect of image to draw to ## |
| 4148 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4149 | and so on; or nullptr |
| 4150 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4151 | #Param constraint filter strictly within image or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4152 | |
| 4153 | #Example |
| 4154 | #Image 4 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4155 | void draw(SkCanvas* canvas) { |
| 4156 | // sk_sp<SkImage> image; |
| 4157 | for (auto i : { 20, 40, 80, 160 } ) { |
| 4158 | canvas->drawImageRect(image.get(), SkRect::MakeXYWH(i, i, i, i), nullptr); |
| 4159 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4160 | } |
| 4161 | ## |
| 4162 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4163 | #SeeAlso SrcRectConstraint drawImage drawImageLattice drawImageNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4164 | |
| 4165 | ## |
| 4166 | |
| 4167 | # ------------------------------------------------------------------------------ |
| 4168 | |
| 4169 | #Method void drawImageRect(const sk_sp<SkImage>& image, const SkRect& src, const SkRect& dst, |
| 4170 | const SkPaint* paint, |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4171 | SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4172 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4173 | #In Draw |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 4174 | Draws Rect src of Image image, scaled and translated to fill Rect dst. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4175 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4176 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4177 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4178 | Blend_Mode, and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 4179 | If paint contains Mask_Filter, generate mask from image bounds. |
| 4180 | |
| 4181 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4182 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4183 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4184 | |
| 4185 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
| 4186 | sample within src; set to kFast_SrcRectConstraint allows sampling outside to |
| 4187 | improve performance. |
| 4188 | |
| 4189 | #Param image Image containing pixels, dimensions, and format ## |
| 4190 | #Param src source Rect of image to draw from ## |
| 4191 | #Param dst destination Rect of image to draw to ## |
| 4192 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4193 | and so on; or nullptr |
| 4194 | ## |
| 4195 | #Param constraint filter strictly within src or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4196 | |
| 4197 | #Example |
| 4198 | #Height 64 |
| 4199 | #Description |
| 4200 | Canvas scales and translates; transformation from src to dst also scales. |
| 4201 | The two matrices are concatenated to create the final transformation. |
| 4202 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4203 | void draw(SkCanvas* canvas) { |
| 4204 | uint32_t pixels[][2] = { { SK_ColorBLACK, SK_ColorWHITE }, |
| 4205 | { SK_ColorWHITE, SK_ColorBLACK } }; |
| 4206 | SkBitmap bitmap; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4207 | bitmap.installPixels(SkImageInfo::MakeN32Premul(2, 2), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4208 | (void*) pixels, sizeof(pixels[0])); |
| 4209 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(bitmap); |
| 4210 | SkPaint paint; |
| 4211 | canvas->scale(4, 4); |
| 4212 | for (auto alpha : { 50, 100, 150, 255 } ) { |
| 4213 | paint.setAlpha(alpha); |
| 4214 | canvas->drawImageRect(image, SkRect::MakeWH(2, 2), SkRect::MakeWH(8, 8), &paint); |
| 4215 | canvas->translate(8, 0); |
| 4216 | } |
| 4217 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4218 | ## |
| 4219 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4220 | #SeeAlso SrcRectConstraint drawImage drawImageLattice drawImageNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4221 | |
| 4222 | ## |
| 4223 | |
| 4224 | # ------------------------------------------------------------------------------ |
| 4225 | |
| 4226 | #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] | 4227 | const SkPaint* paint, SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4228 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4229 | #In Draw |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 4230 | Draws IRect isrc of Image image, scaled and translated to fill Rect dst. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4231 | isrc is on integer pixel boundaries; dst may include fractional boundaries. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4232 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4233 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4234 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4235 | Blend_Mode, and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 4236 | If paint contains Mask_Filter, generate mask from image bounds. |
| 4237 | |
| 4238 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4239 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4240 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4241 | |
| 4242 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4243 | sample within image; set to kFast_SrcRectConstraint allows sampling outside to |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4244 | improve performance. |
| 4245 | |
| 4246 | #Param image Image containing pixels, dimensions, and format ## |
| 4247 | #Param isrc source IRect of image to draw from ## |
| 4248 | #Param dst destination Rect of image to draw to ## |
| 4249 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4250 | and so on; or nullptr |
| 4251 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4252 | #Param constraint filter strictly within image or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4253 | |
| 4254 | #Example |
| 4255 | #Height 64 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4256 | void draw(SkCanvas* canvas) { |
| 4257 | uint32_t pixels[][2] = { { 0x00000000, 0x55555555}, |
| 4258 | { 0xAAAAAAAA, 0xFFFFFFFF} }; |
| 4259 | SkBitmap bitmap; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4260 | bitmap.installPixels(SkImageInfo::MakeN32Premul(2, 2), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4261 | (void*) pixels, sizeof(pixels[0])); |
| 4262 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(bitmap); |
| 4263 | SkPaint paint; |
| 4264 | canvas->scale(4, 4); |
| 4265 | for (auto color : { SK_ColorRED, SK_ColorBLUE, SK_ColorGREEN } ) { |
| 4266 | paint.setColorFilter(SkColorFilter::MakeModeFilter(color, SkBlendMode::kPlus)); |
| 4267 | canvas->drawImageRect(image, SkIRect::MakeWH(2, 2), SkRect::MakeWH(8, 8), &paint); |
| 4268 | canvas->translate(8, 0); |
| 4269 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4270 | } |
| 4271 | ## |
| 4272 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4273 | #SeeAlso SrcRectConstraint drawImage drawImageLattice drawImageNine |
| 4274 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4275 | ## |
| 4276 | |
| 4277 | # ------------------------------------------------------------------------------ |
| 4278 | |
| 4279 | #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] | 4280 | SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4281 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4282 | #In Draw |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 4283 | Draws Image image, scaled and translated to fill Rect dst, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4284 | using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4285 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4286 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4287 | Blend_Mode, and Draw_Looper. If image is kAlpha_8_SkColorType, apply Shader. |
| 4288 | If paint contains Mask_Filter, generate mask from image bounds. |
| 4289 | |
| 4290 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4291 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4292 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4293 | |
| 4294 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4295 | sample within image; set to kFast_SrcRectConstraint allows sampling outside to |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4296 | improve performance. |
| 4297 | |
| 4298 | #Param image Image containing pixels, dimensions, and format ## |
| 4299 | #Param dst destination Rect of image to draw to ## |
| 4300 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4301 | and so on; or nullptr |
| 4302 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4303 | #Param constraint filter strictly within image or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4304 | |
| 4305 | #Example |
| 4306 | #Height 64 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4307 | void draw(SkCanvas* canvas) { |
| 4308 | uint32_t pixels[][2] = { { 0x00000000, 0x55550000}, |
| 4309 | { 0xAAAA0000, 0xFFFF0000} }; |
| 4310 | SkBitmap bitmap; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4311 | bitmap.installPixels(SkImageInfo::MakeN32Premul(2, 2), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4312 | (void*) pixels, sizeof(pixels[0])); |
| 4313 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(bitmap); |
| 4314 | SkPaint paint; |
| 4315 | canvas->scale(4, 4); |
| 4316 | for (auto color : { SK_ColorRED, SK_ColorBLUE, SK_ColorGREEN } ) { |
| 4317 | paint.setColorFilter(SkColorFilter::MakeModeFilter(color, SkBlendMode::kPlus)); |
| 4318 | canvas->drawImageRect(image, SkRect::MakeWH(8, 8), &paint); |
| 4319 | canvas->translate(8, 0); |
| 4320 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4321 | } |
| 4322 | ## |
| 4323 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4324 | #SeeAlso SrcRectConstraint drawImage drawImageLattice drawImageNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4325 | |
| 4326 | ## |
| 4327 | |
| 4328 | # ------------------------------------------------------------------------------ |
| 4329 | |
| 4330 | #Method void drawImageNine(const SkImage* image, const SkIRect& center, const SkRect& dst, |
| 4331 | const SkPaint* paint = nullptr) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4332 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4333 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4334 | #Line # draws Nine_Patch Image ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4335 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 4336 | Draws Image image stretched proportionally to fit into Rect dst. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4337 | 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] | 4338 | the center. Corners are unmodified or scaled down proportionately if their sides |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4339 | 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] | 4340 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4341 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
| 4342 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4343 | #paint_as_used_by_draw_lattice_or_draw_nine(image)# |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4344 | |
| 4345 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4346 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4347 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4348 | |
| 4349 | #Param image Image containing pixels, dimensions, and format ## |
| 4350 | #Param center IRect edge of image corners and sides ## |
| 4351 | #Param dst destination Rect of image to draw to ## |
| 4352 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4353 | and so on; or nullptr |
| 4354 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4355 | |
| 4356 | #Example |
| 4357 | #Height 128 |
| 4358 | #Description |
| 4359 | 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] | 4360 | The second image equals the size of center; only corners are drawn without scaling. |
| 4361 | The remaining images are larger than center. All corners draw without scaling. |
| 4362 | 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] | 4363 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4364 | void draw(SkCanvas* canvas) { |
| 4365 | SkIRect center = { 20, 10, 50, 40 }; |
| 4366 | SkBitmap bitmap; |
| 4367 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(60, 60)); |
| 4368 | SkCanvas bitCanvas(bitmap); |
| 4369 | SkPaint paint; |
| 4370 | SkColor gray = 0xFF000000; |
| 4371 | int left = 0; |
| 4372 | for (auto right: { center.fLeft, center.fRight, bitmap.width() } ) { |
| 4373 | int top = 0; |
| 4374 | for (auto bottom: { center.fTop, center.fBottom, bitmap.height() } ) { |
| 4375 | paint.setColor(gray); |
| 4376 | bitCanvas.drawIRect(SkIRect::MakeLTRB(left, top, right, bottom), paint); |
| 4377 | gray += 0x001f1f1f; |
| 4378 | top = bottom; |
| 4379 | } |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4380 | left = right; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4381 | } |
| 4382 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(bitmap); |
| 4383 | SkImage* imagePtr = image.get(); |
| 4384 | for (auto dest: { 20, 30, 40, 60, 90 } ) { |
| 4385 | canvas->drawImageNine(imagePtr, center, SkRect::MakeWH(dest, dest), nullptr); |
| 4386 | canvas->translate(dest + 4, 0); |
| 4387 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4388 | } |
| 4389 | ## |
| 4390 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4391 | #SeeAlso drawImage drawBitmapNine drawImageLattice drawImageRect |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4392 | |
| 4393 | ## |
| 4394 | |
| 4395 | # ------------------------------------------------------------------------------ |
| 4396 | |
| 4397 | #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] | 4398 | const SkPaint* paint = nullptr) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4399 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4400 | #In Draw |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 4401 | Draws Image image stretched proportionally to fit into Rect dst. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4402 | 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] | 4403 | 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] | 4404 | 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] | 4405 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4406 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
| 4407 | |
Cary Clark | 137b874 | 2018-05-30 09:21:49 -0400 | [diff] [blame] | 4408 | #paint_as_used_by_draw_lattice_or_draw_nine(image)# |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4409 | |
| 4410 | If generated mask extends beyond image bounds, replicate image edge colors, just |
| 4411 | as Shader made from SkImage::makeShader with SkShader::kClamp_TileMode set |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4412 | replicates the image edge color when it samples outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4413 | |
| 4414 | #Param image Image containing pixels, dimensions, and format ## |
| 4415 | #Param center IRect edge of image corners and sides ## |
| 4416 | #Param dst destination Rect of image to draw to ## |
| 4417 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4418 | and so on; or nullptr |
| 4419 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4420 | |
| 4421 | #Example |
| 4422 | #Height 128 |
| 4423 | #Description |
| 4424 | The two leftmost images has four corners and sides to the left and right of center. |
| 4425 | The leftmost image scales the width of corners proportionately to fit. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4426 | 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] | 4427 | fill the remaining space. |
| 4428 | The rightmost image has four corners scaled vertically to fit, and uses sides above |
| 4429 | and below center to fill the remaining space. |
| 4430 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4431 | void draw(SkCanvas* canvas) { |
| 4432 | SkIRect center = { 20, 10, 50, 40 }; |
| 4433 | SkBitmap bitmap; |
| 4434 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(60, 60)); |
| 4435 | SkCanvas bitCanvas(bitmap); |
| 4436 | SkPaint paint; |
| 4437 | SkColor gray = 0xFF000000; |
| 4438 | int left = 0; |
| 4439 | for (auto right: { center.fLeft, center.fRight, bitmap.width() } ) { |
| 4440 | int top = 0; |
| 4441 | for (auto bottom: { center.fTop, center.fBottom, bitmap.height() } ) { |
| 4442 | paint.setColor(gray); |
| 4443 | bitCanvas.drawIRect(SkIRect::MakeLTRB(left, top, right, bottom), paint); |
| 4444 | gray += 0x001f1f1f; |
| 4445 | top = bottom; |
| 4446 | } |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4447 | left = right; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4448 | } |
| 4449 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(bitmap); |
| 4450 | for (auto dest: { 20, 30, 40, 60, 90 } ) { |
| 4451 | canvas->drawImageNine(image, center, SkRect::MakeWH(dest, 110 - dest), nullptr); |
| 4452 | canvas->translate(dest + 4, 0); |
| 4453 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4454 | } |
| 4455 | ## |
| 4456 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4457 | #SeeAlso drawImage drawBitmapNine drawImageLattice drawImageRect |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4458 | |
| 4459 | ## |
| 4460 | |
| 4461 | # ------------------------------------------------------------------------------ |
| 4462 | |
| 4463 | #Method void drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top, |
Cary Clark | 73fa972 | 2017-08-29 17:36:51 -0400 | [diff] [blame] | 4464 | const SkPaint* paint = nullptr) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4465 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4466 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4467 | #Line # draws Bitmap at (x, y) position ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4468 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 4469 | Draws Bitmap bitmap, with its top-left corner at (left, top), |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4470 | using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4471 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 4472 | 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] | 4473 | Blend_Mode, and Draw_Looper. If bitmap is kAlpha_8_SkColorType, apply Shader. |
| 4474 | If paint contains Mask_Filter, generate mask from bitmap bounds. |
| 4475 | |
| 4476 | If generated mask extends beyond bitmap bounds, replicate bitmap edge colors, |
| 4477 | just as Shader made from SkShader::MakeBitmapShader with |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4478 | SkShader::kClamp_TileMode set replicates the bitmap edge color when it samples |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4479 | outside of its bounds. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4480 | |
| 4481 | #Param bitmap Bitmap containing pixels, dimensions, and format ## |
| 4482 | #Param left left side of bitmap ## |
| 4483 | #Param top top side of bitmap ## |
| 4484 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4485 | and so on; or nullptr |
| 4486 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4487 | |
| 4488 | #Example |
| 4489 | #Height 64 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4490 | void draw(SkCanvas* canvas) { |
| 4491 | uint8_t pixels[][8] = { { 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00}, |
| 4492 | { 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00}, |
| 4493 | { 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00}, |
| 4494 | { 0xFF, 0xFF, 0x00, 0xFF, 0xFF, 0x00, 0xFF, 0xFF}, |
| 4495 | { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, |
| 4496 | { 0x00, 0x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, 0x00}, |
| 4497 | { 0x00, 0xFF, 0x00, 0xFF, 0xFF, 0x00, 0xFF, 0x00}, |
| 4498 | { 0xFF, 0x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, 0xFF} }; |
| 4499 | SkBitmap bitmap; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4500 | bitmap.installPixels(SkImageInfo::MakeA8(8, 8), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4501 | (void*) pixels, sizeof(pixels[0])); |
| 4502 | SkPaint paint; |
| 4503 | canvas->scale(4, 4); |
| 4504 | for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xFF007F00} ) { |
| 4505 | paint.setColor(color); |
| 4506 | canvas->drawBitmap(bitmap, 0, 0, &paint); |
| 4507 | canvas->translate(12, 0); |
| 4508 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4509 | } |
| 4510 | ## |
| 4511 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4512 | #SeeAlso drawImage drawBitmapLattice drawBitmapNine drawBitmapRect SkBitmap::readPixels SkBitmap::writePixels |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4513 | |
| 4514 | ## |
| 4515 | |
| 4516 | # ------------------------------------------------------------------------------ |
| 4517 | |
| 4518 | #Method void drawBitmapRect(const SkBitmap& bitmap, const SkRect& src, const SkRect& dst, |
| 4519 | const SkPaint* paint, SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4520 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4521 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4522 | #Line # draws Bitmap, source Rect to destination Rect ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4523 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 4524 | Draws Rect src of Bitmap bitmap, scaled and translated to fill Rect dst. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4525 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4526 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4527 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4528 | Blend_Mode, and Draw_Looper. If bitmap is kAlpha_8_SkColorType, apply Shader. |
| 4529 | If paint contains Mask_Filter, generate mask from bitmap bounds. |
| 4530 | |
| 4531 | If generated mask extends beyond bitmap bounds, replicate bitmap edge colors, |
| 4532 | just as Shader made from SkShader::MakeBitmapShader with |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4533 | SkShader::kClamp_TileMode set replicates the bitmap edge color when it samples |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4534 | outside of its bounds. |
| 4535 | |
| 4536 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
| 4537 | sample within src; set to kFast_SrcRectConstraint allows sampling outside to |
| 4538 | improve performance. |
| 4539 | |
| 4540 | #Param bitmap Bitmap containing pixels, dimensions, and format ## |
| 4541 | #Param src source Rect of image to draw from ## |
| 4542 | #Param dst destination Rect of image to draw to ## |
| 4543 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4544 | and so on; or nullptr |
| 4545 | ## |
| 4546 | #Param constraint filter strictly within src or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4547 | |
| 4548 | #Example |
| 4549 | #Height 64 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4550 | void draw(SkCanvas* canvas) { |
| 4551 | uint8_t pixels[][8] = { { 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00}, |
| 4552 | { 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00}, |
| 4553 | { 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00}, |
| 4554 | { 0xFF, 0xFF, 0x00, 0xFF, 0xFF, 0x00, 0xFF, 0xFF}, |
| 4555 | { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, |
| 4556 | { 0x00, 0x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, 0x00}, |
| 4557 | { 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00}, |
| 4558 | { 0x00, 0x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, 0x00} }; |
| 4559 | SkBitmap bitmap; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4560 | bitmap.installPixels(SkImageInfo::MakeA8(8, 8), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4561 | (void*) pixels, sizeof(pixels[0])); |
| 4562 | SkPaint paint; |
Cary Clark | 681287e | 2018-03-16 11:34:15 -0400 | [diff] [blame] | 4563 | paint.setMaskFilter(SkMaskFilter::MakeBlur(kSolid_SkBlurStyle, 6)); |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4564 | for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xFF007F00} ) { |
| 4565 | paint.setColor(color); |
| 4566 | canvas->drawBitmapRect(bitmap, SkRect::MakeWH(8, 8), SkRect::MakeWH(32, 32), &paint); |
| 4567 | canvas->translate(48, 0); |
| 4568 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4569 | } |
| 4570 | ## |
| 4571 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4572 | #SeeAlso drawImageRect drawBitmap drawBitmapLattice drawBitmapNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4573 | |
| 4574 | ## |
| 4575 | |
| 4576 | # ------------------------------------------------------------------------------ |
| 4577 | |
| 4578 | #Method void drawBitmapRect(const SkBitmap& bitmap, const SkIRect& isrc, const SkRect& dst, |
| 4579 | const SkPaint* paint, SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4580 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4581 | #In Draw |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 4582 | Draws IRect isrc of Bitmap bitmap, scaled and translated to fill Rect dst. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4583 | isrc is on integer pixel boundaries; dst may include fractional boundaries. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4584 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4585 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4586 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4587 | Blend_Mode, and Draw_Looper. If bitmap is kAlpha_8_SkColorType, apply Shader. |
| 4588 | If paint contains Mask_Filter, generate mask from bitmap bounds. |
| 4589 | |
| 4590 | If generated mask extends beyond bitmap bounds, replicate bitmap edge colors, |
| 4591 | just as Shader made from SkShader::MakeBitmapShader with |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4592 | SkShader::kClamp_TileMode set replicates the bitmap edge color when it samples |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4593 | outside of its bounds. |
| 4594 | |
| 4595 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4596 | sample within isrc; set to kFast_SrcRectConstraint allows sampling outside to |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4597 | improve performance. |
| 4598 | |
| 4599 | #Param bitmap Bitmap containing pixels, dimensions, and format ## |
| 4600 | #Param isrc source IRect of image to draw from ## |
| 4601 | #Param dst destination Rect of image to draw to ## |
| 4602 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4603 | and so on; or nullptr |
| 4604 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4605 | #Param constraint sample strictly within isrc, or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4606 | |
| 4607 | #Example |
| 4608 | #Height 64 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4609 | void draw(SkCanvas* canvas) { |
| 4610 | uint8_t pixels[][8] = { { 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00}, |
| 4611 | { 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00}, |
| 4612 | { 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0x00, 0xFF}, |
| 4613 | { 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0x00, 0xFF}, |
| 4614 | { 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0xFF}, |
| 4615 | { 0xFF, 0x00, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xFF}, |
| 4616 | { 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00}, |
| 4617 | { 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00} }; |
| 4618 | SkBitmap bitmap; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4619 | bitmap.installPixels(SkImageInfo::MakeA8(8, 8), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4620 | (void*) pixels, sizeof(pixels[0])); |
| 4621 | SkPaint paint; |
| 4622 | paint.setFilterQuality(kHigh_SkFilterQuality); |
| 4623 | for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xFF007F00, 0xFF7f007f} ) { |
| 4624 | paint.setColor(color); |
| 4625 | canvas->drawBitmapRect(bitmap, SkIRect::MakeWH(8, 8), SkRect::MakeWH(32, 32), &paint); |
| 4626 | canvas->translate(48.25f, 0); |
| 4627 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4628 | } |
| 4629 | ## |
| 4630 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4631 | #SeeAlso drawImageRect drawBitmap drawBitmapLattice drawBitmapNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4632 | |
| 4633 | ## |
| 4634 | |
| 4635 | # ------------------------------------------------------------------------------ |
| 4636 | |
| 4637 | #Method void drawBitmapRect(const SkBitmap& bitmap, const SkRect& dst, const SkPaint* paint, |
| 4638 | SrcRectConstraint constraint = kStrict_SrcRectConstraint) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4639 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4640 | #In Draw |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 4641 | Draws Bitmap bitmap, scaled and translated to fill Rect dst. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4642 | bitmap bounds is on integer pixel boundaries; dst may include fractional boundaries. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4643 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4644 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4645 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4646 | Blend_Mode, and Draw_Looper. If bitmap is kAlpha_8_SkColorType, apply Shader. |
| 4647 | If paint contains Mask_Filter, generate mask from bitmap bounds. |
| 4648 | |
| 4649 | If generated mask extends beyond bitmap bounds, replicate bitmap edge colors, |
| 4650 | just as Shader made from SkShader::MakeBitmapShader with |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4651 | SkShader::kClamp_TileMode set replicates the bitmap edge color when it samples |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4652 | outside of its bounds. |
| 4653 | |
| 4654 | constraint set to kStrict_SrcRectConstraint limits Paint Filter_Quality to |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4655 | sample within bitmap; set to kFast_SrcRectConstraint allows sampling outside to |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4656 | improve performance. |
| 4657 | |
| 4658 | #Param bitmap Bitmap containing pixels, dimensions, and format ## |
| 4659 | #Param dst destination Rect of image to draw to ## |
| 4660 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4661 | and so on; or nullptr |
| 4662 | ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4663 | #Param constraint filter strictly within bitmap or draw faster ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4664 | |
| 4665 | #Example |
| 4666 | #Height 64 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4667 | void draw(SkCanvas* canvas) { |
| 4668 | uint32_t pixels[][2] = { { 0x00000000, 0x55550000}, |
| 4669 | { 0xAAAA0000, 0xFFFF0000} }; |
| 4670 | SkBitmap bitmap; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4671 | bitmap.installPixels(SkImageInfo::MakeN32Premul(2, 2), |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4672 | (void*) pixels, sizeof(pixels[0])); |
| 4673 | SkPaint paint; |
| 4674 | canvas->scale(4, 4); |
| 4675 | for (auto color : { SK_ColorRED, SK_ColorBLUE, SK_ColorGREEN } ) { |
| 4676 | paint.setColorFilter(SkColorFilter::MakeModeFilter(color, SkBlendMode::kPlus)); |
| 4677 | canvas->drawBitmapRect(bitmap, SkRect::MakeWH(8, 8), &paint); |
| 4678 | canvas->translate(8, 0); |
| 4679 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4680 | } |
| 4681 | ## |
| 4682 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4683 | #SeeAlso drawImageRect drawBitmap drawBitmapLattice drawBitmapNine |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4684 | |
| 4685 | ## |
| 4686 | |
| 4687 | # ------------------------------------------------------------------------------ |
| 4688 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4689 | #PhraseDef paint_as_used_by_draw_lattice_or_draw_nine(bitmap_or_image) |
| 4690 | If Paint paint is supplied, apply Color_Filter, Color_Alpha, Image_Filter, |
| 4691 | Blend_Mode, and Draw_Looper. If #bitmap_or_image# is kAlpha_8_SkColorType, apply Shader. |
| 4692 | If paint contains Mask_Filter, generate mask from #bitmap_or_image# bounds. If paint |
| 4693 | Filter_Quality set to kNone_SkFilterQuality, disable pixel filtering. For all |
| 4694 | other values of paint Filter_Quality, use kLow_SkFilterQuality to filter pixels. |
Cary Clark | 137b874 | 2018-05-30 09:21:49 -0400 | [diff] [blame] | 4695 | Any SkMaskFilter on paint is ignored as is paint Anti_Aliasing state. |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4696 | ## |
| 4697 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4698 | #Method void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, const SkRect& dst, |
Cary Clark | 73fa972 | 2017-08-29 17:36:51 -0400 | [diff] [blame] | 4699 | const SkPaint* paint = nullptr) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4700 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4701 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4702 | #Line # draws Nine_Patch Bitmap ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4703 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 4704 | Draws Bitmap bitmap stretched proportionally to fit into Rect dst. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4705 | IRect center divides the bitmap into nine sections: four sides, four corners, |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 4706 | 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] | 4707 | sides are larger than dst; center and four sides are scaled to fit remaining |
| 4708 | space, if any. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4709 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4710 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
| 4711 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4712 | #paint_as_used_by_draw_lattice_or_draw_nine(bitmap)# |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4713 | |
| 4714 | If generated mask extends beyond bitmap bounds, replicate bitmap edge colors, |
| 4715 | just as Shader made from SkShader::MakeBitmapShader with |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4716 | SkShader::kClamp_TileMode set replicates the bitmap edge color when it samples |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4717 | outside of its bounds. |
| 4718 | |
| 4719 | #Param bitmap Bitmap containing pixels, dimensions, and format ## |
| 4720 | #Param center IRect edge of image corners and sides ## |
| 4721 | #Param dst destination Rect of image to draw to ## |
| 4722 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4723 | and so on; or nullptr |
| 4724 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4725 | |
| 4726 | #Example |
| 4727 | #Height 128 |
| 4728 | #Description |
| 4729 | The two leftmost bitmap draws has four corners and sides to the left and right of center. |
| 4730 | The leftmost bitmap draw scales the width of corners proportionately to fit. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4731 | 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] | 4732 | fill the remaining space. |
| 4733 | The rightmost bitmap draw has four corners scaled vertically to fit, and uses sides above |
| 4734 | and below center to fill the remaining space. |
| 4735 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4736 | void draw(SkCanvas* canvas) { |
| 4737 | SkIRect center = { 20, 10, 50, 40 }; |
| 4738 | SkBitmap bitmap; |
| 4739 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(60, 60)); |
| 4740 | SkCanvas bitCanvas(bitmap); |
| 4741 | SkPaint paint; |
| 4742 | SkColor gray = 0xFF000000; |
| 4743 | int left = 0; |
| 4744 | for (auto right: { center.fLeft, center.fRight, bitmap.width() } ) { |
| 4745 | int top = 0; |
| 4746 | for (auto bottom: { center.fTop, center.fBottom, bitmap.height() } ) { |
| 4747 | paint.setColor(gray); |
| 4748 | bitCanvas.drawIRect(SkIRect::MakeLTRB(left, top, right, bottom), paint); |
| 4749 | gray += 0x001f1f1f; |
| 4750 | top = bottom; |
| 4751 | } |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4752 | left = right; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4753 | } |
| 4754 | for (auto dest: { 20, 30, 40, 60, 90 } ) { |
| 4755 | canvas->drawBitmapNine(bitmap, center, SkRect::MakeWH(dest, 110 - dest), nullptr); |
| 4756 | canvas->translate(dest + 4, 0); |
| 4757 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4758 | } |
| 4759 | ## |
| 4760 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4761 | #SeeAlso drawImageNine drawBitmap drawBitmapLattice drawBitmapRect |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4762 | |
| 4763 | ## |
| 4764 | |
| 4765 | # ------------------------------------------------------------------------------ |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4766 | #Subtopic Lattice |
| 4767 | #Line # divides Bitmap or Image into a rectangular grid ## |
| 4768 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4769 | #Struct Lattice |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 4770 | #Line # divides Bitmap or Image into a rectangular grid ## |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4771 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4772 | #Code |
| 4773 | struct Lattice { |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4774 | enum RectType ... |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4775 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4776 | const int* fXDivs; |
| 4777 | const int* fYDivs; |
| 4778 | const RectType* fRectTypes; |
| 4779 | int fXCount; |
| 4780 | int fYCount; |
| 4781 | const SkIRect* fBounds; |
| 4782 | const SkColor* fColors; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4783 | }; |
| 4784 | ## |
| 4785 | |
Cary Clark | 137b874 | 2018-05-30 09:21:49 -0400 | [diff] [blame] | 4786 | Lattice divides Bitmap or Image into a rectangular grid. |
| 4787 | Grid entries on even columns and even rows are fixed; these entries are |
| 4788 | always drawn at their original size if the destination is large enough. |
| 4789 | If the destination side is too small to hold the fixed entries, all fixed |
| 4790 | entries are proportionately scaled down to fit. |
| 4791 | The grid entries not on even columns and rows are scaled to fit the |
| 4792 | remaining space, if any. |
| 4793 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4794 | #Subtopic Overview |
| 4795 | #Populate |
| 4796 | ## |
| 4797 | |
| 4798 | #Subtopic Constant |
| 4799 | #Populate |
| 4800 | ## |
Cary Clark | 154beea | 2017-10-26 07:58:48 -0400 | [diff] [blame] | 4801 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4802 | #Enum RectType |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4803 | #Line # optional setting per rectangular grid entry ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4804 | #Code |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4805 | enum RectType : uint8_t { |
| 4806 | kDefault = 0, |
| 4807 | kTransparent, |
| 4808 | kFixedColor, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4809 | }; |
| 4810 | ## |
| 4811 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4812 | Optional setting per rectangular grid entry to make it transparent, |
| 4813 | or to fill the grid entry with a color. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4814 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4815 | #Const kDefault 0 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4816 | #Line # draws Bitmap into lattice rectangle ## |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4817 | ## |
| 4818 | |
| 4819 | #Const kTransparent 1 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4820 | #Line # skips lattice rectangle by making it transparent ## |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4821 | ## |
| 4822 | |
| 4823 | #Const kFixedColor 2 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4824 | #Line # draws one of fColors into lattice rectangle ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4825 | ## |
| 4826 | ## |
| 4827 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4828 | #Subtopic Member |
| 4829 | #Populate |
| 4830 | ## |
| 4831 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4832 | #Member const int* fXDivs |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 4833 | #Line # x-axis values dividing bitmap ## |
| 4834 | Array of x-axis values that divide the bitmap vertically. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4835 | Array entries must be unique, increasing, greater than or equal to |
| 4836 | fBounds left edge, and less than fBounds right edge. |
| 4837 | Set the first element to fBounds left to collapse the left column of |
| 4838 | fixed grid entries. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4839 | ## |
| 4840 | |
| 4841 | #Member const int* fYDivs |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 4842 | #Line # y-axis values dividing bitmap ## |
| 4843 | Array of y-axis values that divide the bitmap horizontally. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4844 | Array entries must be unique, increasing, greater than or equal to |
| 4845 | fBounds top edge, and less than fBounds bottom edge. |
| 4846 | Set the first element to fBounds top to collapse the top row of fixed |
| 4847 | grid entries. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4848 | ## |
| 4849 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4850 | #Member const RectType* fRectTypes |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4851 | #Line # array of fill types ## |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4852 | Optional array of fill types, one per rectangular grid entry: |
Cary Clark | 2be81cf | 2018-09-13 12:04:30 -0400 | [diff] [blame] | 4853 | array length must be #Formula # (fXCount + 1) * (fYCount + 1) ##. |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 4854 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4855 | Each RectType is one of: kDefault, kTransparent, kFixedColor. |
| 4856 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4857 | Array entries correspond to the rectangular grid entries, ascending |
| 4858 | left to right and then top to bottom. |
| 4859 | ## |
| 4860 | |
| 4861 | #Member int fXCount |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4862 | #Line # number of x-coordinates ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4863 | Number of entries in fXDivs array; one less than the number of |
| 4864 | horizontal divisions. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4865 | ## |
| 4866 | |
| 4867 | #Member int fYCount |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4868 | #Line # number of y-coordinates ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4869 | Number of entries in fYDivs array; one less than the number of vertical |
| 4870 | divisions. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4871 | ## |
| 4872 | |
| 4873 | #Member const SkIRect* fBounds |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4874 | #Line # source bounds to draw from ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4875 | Optional subset IRect source to draw from. |
| 4876 | If nullptr, source bounds is dimensions of Bitmap or Image. |
| 4877 | ## |
| 4878 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4879 | #Member const SkColor* fColors |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4880 | #Line # array of colors ## |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4881 | Optional array of colors, one per rectangular grid entry. |
Cary Clark | 2be81cf | 2018-09-13 12:04:30 -0400 | [diff] [blame] | 4882 | Array length must be #Formula # (fXCount + 1) * (fYCount + 1) ##. |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 4883 | |
| 4884 | Array entries correspond to the rectangular grid entries, ascending |
| 4885 | left to right, then top to bottom. |
| 4886 | ## |
| 4887 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4888 | #Struct Lattice ## |
| 4889 | |
| 4890 | #Method void drawBitmapLattice(const SkBitmap& bitmap, const Lattice& lattice, const SkRect& dst, |
| 4891 | const SkPaint* paint = nullptr) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4892 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4893 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4894 | #Line # draws proportionally stretched Bitmap ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4895 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 4896 | Draws Bitmap bitmap stretched proportionally to fit into Rect dst. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4897 | |
| 4898 | Lattice lattice divides bitmap into a rectangular grid. |
| 4899 | 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] | 4900 | of drawBitmapNine, fixed lattice elements never scale larger than their initial |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4901 | size and shrink proportionately when all fixed elements exceed the bitmap |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4902 | 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] | 4903 | |
| 4904 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4905 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4906 | #paint_as_used_by_draw_lattice_or_draw_nine(bitmap)# |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4907 | |
| 4908 | If generated mask extends beyond bitmap bounds, replicate bitmap edge colors, |
| 4909 | just as Shader made from SkShader::MakeBitmapShader with |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4910 | SkShader::kClamp_TileMode set replicates the bitmap edge color when it samples |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4911 | outside of its bounds. |
| 4912 | |
| 4913 | #Param bitmap Bitmap containing pixels, dimensions, and format ## |
| 4914 | #Param lattice division of bitmap into fixed and variable rectangles ## |
| 4915 | #Param dst destination Rect of image to draw to ## |
| 4916 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4917 | and so on; or nullptr |
| 4918 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4919 | |
| 4920 | #Example |
| 4921 | #Height 128 |
| 4922 | #Description |
| 4923 | The two leftmost bitmap draws has four corners and sides to the left and right of center. |
| 4924 | The leftmost bitmap draw scales the width of corners proportionately to fit. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4925 | 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] | 4926 | fill the remaining space; the center is transparent. |
| 4927 | The rightmost bitmap draw has four corners scaled vertically to fit, and uses sides above |
| 4928 | and below center to fill the remaining space. |
| 4929 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4930 | void draw(SkCanvas* canvas) { |
| 4931 | SkIRect center = { 20, 10, 50, 40 }; |
| 4932 | SkBitmap bitmap; |
| 4933 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(60, 60)); |
| 4934 | SkCanvas bitCanvas(bitmap); |
| 4935 | SkPaint paint; |
| 4936 | SkColor gray = 0xFF000000; |
| 4937 | int left = 0; |
| 4938 | for (auto right: { center.fLeft, center.fRight, bitmap.width() } ) { |
| 4939 | int top = 0; |
| 4940 | for (auto bottom: { center.fTop, center.fBottom, bitmap.height() } ) { |
| 4941 | paint.setColor(gray); |
| 4942 | bitCanvas.drawIRect(SkIRect::MakeLTRB(left, top, right, bottom), paint); |
| 4943 | gray += 0x001f1f1f; |
| 4944 | top = bottom; |
| 4945 | } |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 4946 | left = right; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4947 | } |
| 4948 | const int xDivs[] = { center.fLeft, center.fRight }; |
| 4949 | const int yDivs[] = { center.fTop, center.fBottom }; |
Cary Clark | ca3ebcd | 2017-12-12 11:22:38 -0500 | [diff] [blame] | 4950 | SkCanvas::Lattice::RectType fillTypes[3][3]; |
| 4951 | memset(fillTypes, 0, sizeof(fillTypes)); |
| 4952 | fillTypes[1][1] = SkCanvas::Lattice::kTransparent; |
| 4953 | SkColor dummy[9]; // temporary pending bug fix |
| 4954 | SkCanvas::Lattice lattice = { xDivs, yDivs, fillTypes[0], SK_ARRAY_COUNT(xDivs), |
| 4955 | SK_ARRAY_COUNT(yDivs), nullptr, dummy }; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4956 | for (auto dest: { 20, 30, 40, 60, 90 } ) { |
Cary Clark | ca3ebcd | 2017-12-12 11:22:38 -0500 | [diff] [blame] | 4957 | canvas->drawBitmapLattice(bitmap, lattice, SkRect::MakeWH(dest, 110 - dest), nullptr); |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4958 | canvas->translate(dest + 4, 0); |
| 4959 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4960 | } |
| 4961 | ## |
| 4962 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 4963 | #SeeAlso drawImageLattice drawBitmap drawBitmapNine Lattice |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4964 | |
| 4965 | ## |
| 4966 | |
| 4967 | # ------------------------------------------------------------------------------ |
| 4968 | |
| 4969 | #Method void drawImageLattice(const SkImage* image, const Lattice& lattice, const SkRect& dst, |
| 4970 | const SkPaint* paint = nullptr) |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4971 | #In Draw_Image |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 4972 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 4973 | #Line # draws proportionally stretched Image ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4974 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 4975 | Draws Image image stretched proportionally to fit into Rect dst. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4976 | |
| 4977 | Lattice lattice divides image into a rectangular grid. |
| 4978 | 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] | 4979 | of drawBitmapNine, fixed lattice elements never scale larger than their initial |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4980 | size and shrink proportionately when all fixed elements exceed the bitmap |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4981 | 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] | 4982 | |
| 4983 | Additionally transform draw using Clip, Matrix, and optional Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4984 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 4985 | #paint_as_used_by_draw_lattice_or_draw_nine(image)# |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4986 | |
| 4987 | If generated mask extends beyond bitmap bounds, replicate bitmap edge colors, |
| 4988 | just as Shader made from SkShader::MakeBitmapShader with |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 4989 | SkShader::kClamp_TileMode set replicates the bitmap edge color when it samples |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 4990 | outside of its bounds. |
| 4991 | |
| 4992 | #Param image Image containing pixels, dimensions, and format ## |
| 4993 | #Param lattice division of bitmap into fixed and variable rectangles ## |
| 4994 | #Param dst destination Rect of image to draw to ## |
| 4995 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
| 4996 | and so on; or nullptr |
| 4997 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 4998 | |
| 4999 | #Example |
| 5000 | #Height 128 |
| 5001 | #Description |
| 5002 | 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] | 5003 | The second image equals the size of center; only corners are drawn without scaling. |
| 5004 | 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] | 5005 | are scaled if needed to take up the remaining space; the center is transparent. |
| 5006 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5007 | void draw(SkCanvas* canvas) { |
| 5008 | SkIRect center = { 20, 10, 50, 40 }; |
| 5009 | SkBitmap bitmap; |
| 5010 | bitmap.allocPixels(SkImageInfo::MakeN32Premul(60, 60)); |
| 5011 | SkCanvas bitCanvas(bitmap); |
| 5012 | SkPaint paint; |
| 5013 | SkColor gray = 0xFF000000; |
| 5014 | int left = 0; |
| 5015 | for (auto right: { center.fLeft, center.fRight, bitmap.width() } ) { |
| 5016 | int top = 0; |
| 5017 | for (auto bottom: { center.fTop, center.fBottom, bitmap.height() } ) { |
| 5018 | paint.setColor(gray); |
| 5019 | bitCanvas.drawIRect(SkIRect::MakeLTRB(left, top, right, bottom), paint); |
| 5020 | gray += 0x001f1f1f; |
| 5021 | top = bottom; |
| 5022 | } |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5023 | left = right; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5024 | } |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5025 | sk_sp<SkImage> image = SkImage::MakeFromBitmap(bitmap); |
| 5026 | SkImage* imagePtr = image.get(); |
| 5027 | for (auto dest: { 20, 30, 40, 60, 90 } ) { |
| 5028 | canvas->drawImageNine(imagePtr, center, SkRect::MakeWH(dest, dest), nullptr); |
| 5029 | canvas->translate(dest + 4, 0); |
| 5030 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5031 | } |
| 5032 | ## |
| 5033 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5034 | #SeeAlso drawBitmapLattice drawImage drawImageNine Lattice |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5035 | |
| 5036 | ## |
| 5037 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 5038 | #Subtopic Lattice ## |
| 5039 | |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 5040 | #Subtopic Draw_Image ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5041 | |
| 5042 | # ------------------------------------------------------------------------------ |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5043 | #Subtopic Draw_Text |
| 5044 | #Populate |
| 5045 | #Line # draws text into Canvas ## |
| 5046 | ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5047 | |
| 5048 | #Method void drawText(const void* text, size_t byteLength, SkScalar x, SkScalar y, |
| 5049 | const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5050 | #In Draw_Text |
| 5051 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5052 | #Line # draws text at (x, y), using font advance ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5053 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5054 | Draws text, with origin at (x, y), using Clip, Matrix, and Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5055 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5056 | 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] | 5057 | UTF-8. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5058 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5059 | 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] | 5060 | 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] | 5061 | 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] | 5062 | |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 5063 | All elements of paint: Path_Effect, Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5064 | 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] | 5065 | filled 12 point black Glyphs. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5066 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5067 | #Param text character code points or Glyphs drawn ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5068 | #Param byteLength byte length of text array ## |
| 5069 | #Param x start of text on x-axis ## |
| 5070 | #Param y start of text on y-axis ## |
| 5071 | #Param paint text size, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5072 | |
| 5073 | #Example |
| 5074 | #Height 200 |
| 5075 | #Description |
| 5076 | The same text is drawn varying Paint_Text_Size and varying |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5077 | Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5078 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5079 | void draw(SkCanvas* canvas) { |
| 5080 | SkPaint paint; |
| 5081 | paint.setAntiAlias(true); |
| 5082 | float textSizes[] = { 12, 18, 24, 36 }; |
| 5083 | for (auto size: textSizes ) { |
| 5084 | paint.setTextSize(size); |
| 5085 | canvas->drawText("Aa", 2, 10, 20, paint); |
| 5086 | canvas->translate(0, size * 2); |
| 5087 | } |
| 5088 | paint.reset(); |
| 5089 | paint.setAntiAlias(true); |
| 5090 | float yPos = 20; |
| 5091 | for (auto size: textSizes ) { |
| 5092 | float scale = size / 12.f; |
| 5093 | canvas->resetMatrix(); |
| 5094 | canvas->translate(100, 0); |
| 5095 | canvas->scale(scale, scale); |
| 5096 | canvas->drawText("Aa", 2, 10 / scale, yPos / scale, paint); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5097 | yPos += size * 2; |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5098 | } |
| 5099 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5100 | ## |
| 5101 | |
Cary Clark | 153e76d | 2018-08-28 11:48:28 -0400 | [diff] [blame] | 5102 | #SeeAlso drawString drawPosText drawPosTextH drawTextBlob drawTextRSXform |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5103 | |
| 5104 | ## |
| 5105 | |
| 5106 | #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] | 5107 | #In Draw_Text |
| 5108 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5109 | #Line # draws null terminated string at (x, y) using font advance ## |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 5110 | Draws null terminated string, with origin at (x, y), using Clip, Matrix, and |
| 5111 | Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5112 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5113 | string meaning depends on Paint_Text_Encoding; by default, strings are encoded |
| 5114 | 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] | 5115 | results, since zero bytes may be embedded in the string. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5116 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5117 | 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] | 5118 | 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] | 5119 | 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] | 5120 | |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 5121 | All elements of paint: Path_Effect, Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5122 | 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] | 5123 | filled 12 point black Glyphs. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5124 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5125 | #Param string character code points or Glyphs drawn, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5126 | ending with a char value of zero |
| 5127 | ## |
| 5128 | #Param x start of string on x-axis ## |
| 5129 | #Param y start of string on y-axis ## |
| 5130 | #Param paint text size, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5131 | |
| 5132 | #Example |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 5133 | #Height 48 |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5134 | SkPaint paint; |
| 5135 | canvas->drawString("a small hello", 20, 20, paint); |
| 5136 | ## |
| 5137 | |
Cary Clark | 153e76d | 2018-08-28 11:48:28 -0400 | [diff] [blame] | 5138 | #SeeAlso drawText drawPosText drawPosTextH drawTextBlob drawTextRSXform |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5139 | |
| 5140 | ## |
| 5141 | |
| 5142 | #Method void drawString(const SkString& string, SkScalar x, SkScalar y, const SkPaint& paint) |
| 5143 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5144 | Draws null terminated string, with origin at (x, y), using Clip, Matrix, and |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5145 | Paint paint. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5146 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5147 | string meaning depends on Paint_Text_Encoding; by default, strings are encoded |
| 5148 | 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] | 5149 | results, since zero bytes may be embedded in the string. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5150 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5151 | 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] | 5152 | 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] | 5153 | 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] | 5154 | |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 5155 | All elements of paint: Path_Effect, Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5156 | 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] | 5157 | filled 12 point black Glyphs. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5158 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5159 | #Param string character code points or Glyphs drawn, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5160 | ending with a char value of zero |
| 5161 | ## |
| 5162 | #Param x start of string on x-axis ## |
| 5163 | #Param y start of string on y-axis ## |
| 5164 | #Param paint text size, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5165 | |
| 5166 | #Example |
| 5167 | SkPaint paint; |
| 5168 | SkString string("a small hello"); |
| 5169 | canvas->drawString(string, 20, 20, paint); |
| 5170 | ## |
| 5171 | |
Cary Clark | 153e76d | 2018-08-28 11:48:28 -0400 | [diff] [blame] | 5172 | #SeeAlso drawText drawPosText drawPosTextH drawTextBlob drawTextRSXform |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5173 | |
| 5174 | ## |
| 5175 | |
| 5176 | # ------------------------------------------------------------------------------ |
| 5177 | |
| 5178 | #Method void drawPosText(const void* text, size_t byteLength, const SkPoint pos[], |
| 5179 | const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5180 | #In Draw_Text |
| 5181 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5182 | #Line # draws text at array of (x, y) positions ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5183 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5184 | Draws 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] | 5185 | 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] | 5186 | described by byteLength of text. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5187 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5188 | text meaning depends on Paint_Text_Encoding; by default, text is encoded as |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 5189 | UTF-8. pos elements meaning depends on Paint_Vertical_Text; by default |
| 5190 | glyph left side bearing and baseline are relative to Point in pos array. |
| 5191 | Text size is affected by Matrix and Paint_Text_Size. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5192 | |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 5193 | All elements of paint: Path_Effect, Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5194 | 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] | 5195 | filled 12 point black Glyphs. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5196 | |
| 5197 | Layout engines such as Harfbuzz typically position each glyph |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5198 | rather than using the font advance widths. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5199 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5200 | #Param text character code points or Glyphs drawn ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5201 | #Param byteLength byte length of text array ## |
| 5202 | #Param pos array of glyph origins ## |
| 5203 | #Param paint text size, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5204 | |
| 5205 | #Example |
| 5206 | #Height 120 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5207 | void draw(SkCanvas* canvas) { |
| 5208 | const char hello[] = "HeLLo!"; |
| 5209 | const SkPoint pos[] = { {40, 100}, {82, 95}, {115, 110}, {130, 95}, {145, 85}, |
| 5210 | {172, 100} }; |
| 5211 | SkPaint paint; |
| 5212 | paint.setTextSize(60); |
| 5213 | canvas->drawPosText(hello, strlen(hello), pos, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5214 | } |
| 5215 | ## |
| 5216 | |
Cary Clark | 153e76d | 2018-08-28 11:48:28 -0400 | [diff] [blame] | 5217 | #SeeAlso drawText drawPosTextH drawTextBlob drawTextRSXform |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5218 | |
| 5219 | ## |
| 5220 | |
| 5221 | # ------------------------------------------------------------------------------ |
| 5222 | |
| 5223 | #Method void drawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[], SkScalar constY, |
| 5224 | const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5225 | #In Draw_Text |
| 5226 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5227 | #Line # draws text at x positions with common baseline ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5228 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5229 | Draws each glyph in text with its (x, y) origin composed from xpos array and |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5230 | 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] | 5231 | must match the number of Glyphs described by byteLength of text. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5232 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5233 | text meaning depends on Paint_Text_Encoding; by default, text is encoded as |
Cary Clark | 137b874 | 2018-05-30 09:21:49 -0400 | [diff] [blame] | 5234 | UTF-8. xpos elements meaning depends on Paint_Vertical_Text; |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5235 | 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] | 5236 | 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] | 5237 | Paint_Text_Size. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5238 | |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 5239 | All elements of paint: Path_Effect, Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5240 | 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] | 5241 | filled 12 point black Glyphs. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5242 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5243 | Layout engines such as Harfbuzz typically position each glyph |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5244 | 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] | 5245 | baseline. |
| 5246 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5247 | #Param text character code points or Glyphs drawn ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5248 | #Param byteLength byte length of text array ## |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 5249 | #Param xpos array of x-axis positions, used to position each glyph ## |
| 5250 | #Param constY shared y-axis value for all of x-axis positions ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5251 | #Param paint text size, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5252 | |
| 5253 | #Example |
| 5254 | #Height 40 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5255 | void draw(SkCanvas* canvas) { |
| 5256 | SkScalar xpos[] = { 20, 40, 80, 160 }; |
| 5257 | SkPaint paint; |
| 5258 | canvas->drawPosTextH("XXXX", 4, xpos, 20, paint); |
| 5259 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5260 | ## |
| 5261 | |
Cary Clark | 153e76d | 2018-08-28 11:48:28 -0400 | [diff] [blame] | 5262 | #SeeAlso drawText drawPosText drawTextBlob drawTextRSXform |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5263 | |
| 5264 | ## |
| 5265 | |
| 5266 | # ------------------------------------------------------------------------------ |
| 5267 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5268 | #Method void drawTextRSXform(const void* text, size_t byteLength, const SkRSXform xform[], |
| 5269 | const SkRect* cullRect, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5270 | #In Draw_Text |
| 5271 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5272 | #Line # draws text with array of RSXform ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5273 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5274 | Draws text, transforming each glyph by the corresponding SkRSXform, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5275 | using Clip, Matrix, and Paint paint. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5276 | |
Cary Clark | 137b874 | 2018-05-30 09:21:49 -0400 | [diff] [blame] | 5277 | RSXform xform array specifies a separate square scale, rotation, and translation |
| 5278 | for each glyph. xform does not affect paint Shader. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5279 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5280 | Optional Rect cullRect is a conservative bounds of text, taking into account |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5281 | 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] | 5282 | |
Mike Reed | 8ad91a9 | 2018-01-19 19:09:32 -0500 | [diff] [blame] | 5283 | All elements of paint: Path_Effect, Mask_Filter, Shader, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5284 | 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] | 5285 | filled 12 point black Glyphs. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5286 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5287 | #Param text character code points or Glyphs drawn ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5288 | #Param byteLength byte length of text array ## |
| 5289 | #Param xform RSXform rotates, scales, and translates each glyph individually ## |
| 5290 | #Param cullRect Rect bounds of text for efficient clipping; or nullptr ## |
| 5291 | #Param paint text size, blend, color, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5292 | |
| 5293 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5294 | void draw(SkCanvas* canvas) { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5295 | const int iterations = 26; |
| 5296 | SkRSXform transforms[iterations]; |
| 5297 | char alphabet[iterations]; |
| 5298 | SkScalar angle = 0; |
| 5299 | SkScalar scale = 1; |
| 5300 | for (size_t i = 0; i < SK_ARRAY_COUNT(transforms); ++i) { |
| 5301 | const SkScalar s = SkScalarSin(angle) * scale; |
| 5302 | const SkScalar c = SkScalarCos(angle) * scale; |
| 5303 | transforms[i] = SkRSXform::Make(-c, -s, -s * 16, c * 16); |
| 5304 | angle += .45; |
| 5305 | scale += .2; |
| 5306 | alphabet[i] = 'A' + i; |
| 5307 | } |
| 5308 | SkPaint paint; |
| 5309 | paint.setTextAlign(SkPaint::kCenter_Align); |
| 5310 | canvas->translate(110, 138); |
| 5311 | canvas->drawTextRSXform(alphabet, sizeof(alphabet), transforms, nullptr, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5312 | } |
| 5313 | ## |
| 5314 | |
Cary Clark | 153e76d | 2018-08-28 11:48:28 -0400 | [diff] [blame] | 5315 | #SeeAlso drawText drawPosText drawTextBlob |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5316 | |
| 5317 | ## |
| 5318 | |
| 5319 | # ------------------------------------------------------------------------------ |
| 5320 | |
| 5321 | #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] | 5322 | #In Draw_Text |
| 5323 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5324 | #Line # draws text with arrays of positions and Paint ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5325 | Draws Text_Blob blob at (x, y), using Clip, Matrix, and Paint paint. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5326 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5327 | blob contains Glyphs, their positions, and paint attributes specific to text: |
Cary Clark | d2ca79c | 2018-08-10 13:09:13 -0400 | [diff] [blame] | 5328 | #paint_font_metrics#. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5329 | |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 5330 | Paint_Text_Encoding must be set to SkPaint::kGlyphID_TextEncoding. |
| 5331 | |
Cary Clark | d2ca79c | 2018-08-10 13:09:13 -0400 | [diff] [blame] | 5332 | Elements of paint: Anti_Alias, Blend_Mode, Color including Color_Alpha, |
| 5333 | Color_Filter, Paint_Dither, Draw_Looper, Mask_Filter, Path_Effect, Shader, and |
| 5334 | Paint_Style; apply to blob. If Paint contains SkPaint::kStroke_Style: |
| 5335 | Paint_Miter_Limit, Paint_Stroke_Cap, Paint_Stroke_Join, and Paint_Stroke_Width; |
| 5336 | apply to Path created from blob. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5337 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5338 | #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] | 5339 | #Param x horizontal offset applied to blob ## |
| 5340 | #Param y vertical offset applied to blob ## |
| 5341 | #Param paint blend, color, stroking, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5342 | |
| 5343 | #Example |
| 5344 | #Height 120 |
Cary Clark | e80cd44 | 2018-07-17 13:19:56 -0400 | [diff] [blame] | 5345 | void draw(SkCanvas* canvas) { |
| 5346 | SkTextBlobBuilder textBlobBuilder; |
| 5347 | const char bunny[] = "/(^x^)\\"; |
| 5348 | const int len = sizeof(bunny) - 1; |
| 5349 | uint16_t glyphs[len]; |
| 5350 | SkPaint paint; |
| 5351 | paint.textToGlyphs(bunny, len, glyphs); |
| 5352 | paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding); |
| 5353 | int runs[] = { 3, 1, 3 }; |
| 5354 | SkPoint textPos = { 20, 100 }; |
| 5355 | int glyphIndex = 0; |
| 5356 | for (auto runLen : runs) { |
| 5357 | paint.setTextSize(1 == runLen ? 20 : 50); |
| 5358 | const SkTextBlobBuilder::RunBuffer& run = |
| 5359 | textBlobBuilder.allocRun(paint, runLen, textPos.fX, textPos.fY); |
| 5360 | memcpy(run.glyphs, &glyphs[glyphIndex], sizeof(glyphs[0]) * runLen); |
| 5361 | textPos.fX += paint.measureText(&glyphs[glyphIndex], sizeof(glyphs[0]) * runLen, nullptr); |
| 5362 | glyphIndex += runLen; |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5363 | } |
Cary Clark | e80cd44 | 2018-07-17 13:19:56 -0400 | [diff] [blame] | 5364 | sk_sp<const SkTextBlob> blob = textBlobBuilder.make(); |
| 5365 | paint.reset(); |
| 5366 | canvas->drawTextBlob(blob.get(), 0, 0, paint); |
| 5367 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5368 | ## |
| 5369 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5370 | #SeeAlso drawText drawPosText drawPosTextH |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5371 | |
| 5372 | ## |
| 5373 | |
| 5374 | # ------------------------------------------------------------------------------ |
| 5375 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5376 | #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] | 5377 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5378 | Draws Text_Blob blob at (x, y), using Clip, Matrix, and Paint paint. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5379 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5380 | blob contains Glyphs, their positions, and paint attributes specific to text: |
Cary Clark | d2ca79c | 2018-08-10 13:09:13 -0400 | [diff] [blame] | 5381 | #paint_font_metrics#. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5382 | |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 5383 | Paint_Text_Encoding must be set to SkPaint::kGlyphID_TextEncoding. |
| 5384 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5385 | Elements of paint: Path_Effect, Mask_Filter, Shader, Color_Filter, |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5386 | Image_Filter, and Draw_Looper; apply to blob. |
| 5387 | |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5388 | #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] | 5389 | #Param x horizontal offset applied to blob ## |
| 5390 | #Param y vertical offset applied to blob ## |
| 5391 | #Param paint blend, color, stroking, and so on, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5392 | |
| 5393 | #Example |
| 5394 | #Height 120 |
| 5395 | #Description |
| 5396 | Paint attributes unrelated to text, like color, have no effect on paint in allocated Text_Blob. |
| 5397 | Paint attributes related to text, like text size, have no effect on paint passed to drawTextBlob. |
| 5398 | ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5399 | void draw(SkCanvas* canvas) { |
| 5400 | SkTextBlobBuilder textBlobBuilder; |
| 5401 | SkPaint paint; |
| 5402 | paint.setTextSize(50); |
| 5403 | paint.setColor(SK_ColorRED); |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 5404 | paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding); |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5405 | const SkTextBlobBuilder::RunBuffer& run = |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5406 | textBlobBuilder.allocRun(paint, 1, 20, 100); |
| 5407 | run.glyphs[0] = 20; |
| 5408 | sk_sp<const SkTextBlob> blob = textBlobBuilder.make(); |
| 5409 | paint.setTextSize(10); |
| 5410 | paint.setColor(SK_ColorBLUE); |
| 5411 | canvas->drawTextBlob(blob.get(), 0, 0, paint); |
| 5412 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5413 | ## |
| 5414 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5415 | #SeeAlso drawText drawPosText drawPosTextH |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5416 | |
| 5417 | ## |
| 5418 | |
| 5419 | # ------------------------------------------------------------------------------ |
| 5420 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5421 | #Method void drawPicture(const SkPicture* picture) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5422 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5423 | #Line # draws Picture using Clip and Matrix ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5424 | Draws Picture picture, using Clip and Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5425 | Clip and Matrix are unchanged by picture contents, as if |
| 5426 | save() was called before and restore() was called after drawPicture. |
| 5427 | |
| 5428 | Picture records a series of draw commands for later playback. |
| 5429 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5430 | #Param picture recorded drawing commands to play ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5431 | |
| 5432 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5433 | void draw(SkCanvas* canvas) { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5434 | SkPictureRecorder recorder; |
| 5435 | SkCanvas* recordingCanvas = recorder.beginRecording(50, 50); |
| 5436 | for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xff007f00 } ) { |
| 5437 | SkPaint paint; |
| 5438 | paint.setColor(color); |
| 5439 | recordingCanvas->drawRect({10, 10, 30, 40}, paint); |
| 5440 | recordingCanvas->translate(10, 10); |
| 5441 | recordingCanvas->scale(1.2f, 1.4f); |
| 5442 | } |
| 5443 | sk_sp<SkPicture> playback = recorder.finishRecordingAsPicture(); |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5444 | canvas->drawPicture(playback); |
| 5445 | canvas->scale(2, 2); |
| 5446 | canvas->translate(50, 0); |
| 5447 | canvas->drawPicture(playback); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5448 | } |
| 5449 | ## |
| 5450 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5451 | #SeeAlso drawDrawable SkPicture SkPicture::playback |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5452 | |
| 5453 | ## |
| 5454 | |
| 5455 | # ------------------------------------------------------------------------------ |
| 5456 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5457 | #Method void drawPicture(const sk_sp<SkPicture>& picture) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5458 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5459 | Draws Picture picture, using Clip and Matrix. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5460 | Clip and Matrix are unchanged by picture contents, as if |
| 5461 | save() was called before and restore() was called after drawPicture. |
| 5462 | |
| 5463 | Picture records a series of draw commands for later playback. |
| 5464 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5465 | #Param picture recorded drawing commands to play ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5466 | |
| 5467 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5468 | void draw(SkCanvas* canvas) { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5469 | SkPictureRecorder recorder; |
| 5470 | SkCanvas* recordingCanvas = recorder.beginRecording(50, 50); |
| 5471 | for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xff007f00 } ) { |
| 5472 | SkPaint paint; |
| 5473 | paint.setColor(color); |
| 5474 | recordingCanvas->drawRect({10, 10, 30, 40}, paint); |
| 5475 | recordingCanvas->translate(10, 10); |
| 5476 | recordingCanvas->scale(1.2f, 1.4f); |
| 5477 | } |
| 5478 | sk_sp<SkPicture> playback = recorder.finishRecordingAsPicture(); |
| 5479 | canvas->drawPicture(playback); |
| 5480 | canvas->scale(2, 2); |
| 5481 | canvas->translate(50, 0); |
| 5482 | canvas->drawPicture(playback); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5483 | } |
| 5484 | ## |
| 5485 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5486 | #SeeAlso drawDrawable SkPicture SkPicture::playback |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5487 | |
| 5488 | ## |
| 5489 | |
| 5490 | # ------------------------------------------------------------------------------ |
| 5491 | |
| 5492 | #Method void drawPicture(const SkPicture* picture, const SkMatrix* matrix, const SkPaint* paint) |
| 5493 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5494 | Draws Picture picture, using Clip and Matrix; transforming picture with |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5495 | Matrix matrix, if provided; and use Paint paint Color_Alpha, Color_Filter, |
| 5496 | Image_Filter, and Blend_Mode, if provided. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5497 | |
| 5498 | matrix transformation is equivalent to: save(), concat(), drawPicture, restore(). |
| 5499 | paint use is equivalent to: saveLayer, drawPicture, restore(). |
| 5500 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5501 | #Param picture recorded drawing commands to play ## |
| 5502 | #Param matrix Matrix to rotate, scale, translate, and so on; may be nullptr ## |
| 5503 | #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] | 5504 | |
| 5505 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5506 | void draw(SkCanvas* canvas) { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5507 | SkPaint paint; |
| 5508 | SkPictureRecorder recorder; |
| 5509 | SkCanvas* recordingCanvas = recorder.beginRecording(50, 50); |
| 5510 | for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xff007f00 } ) { |
| 5511 | paint.setColor(color); |
| 5512 | recordingCanvas->drawRect({10, 10, 30, 40}, paint); |
| 5513 | recordingCanvas->translate(10, 10); |
| 5514 | recordingCanvas->scale(1.2f, 1.4f); |
| 5515 | } |
| 5516 | sk_sp<SkPicture> playback = recorder.finishRecordingAsPicture(); |
| 5517 | const SkPicture* playbackPtr = playback.get(); |
| 5518 | SkMatrix matrix; |
| 5519 | matrix.reset(); |
| 5520 | for (auto alpha : { 70, 140, 210 } ) { |
| 5521 | paint.setAlpha(alpha); |
| 5522 | canvas->drawPicture(playbackPtr, &matrix, &paint); |
| 5523 | matrix.preTranslate(70, 70); |
| 5524 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5525 | } |
| 5526 | ## |
| 5527 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5528 | #SeeAlso drawDrawable SkPicture SkPicture::playback |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5529 | |
| 5530 | ## |
| 5531 | |
| 5532 | # ------------------------------------------------------------------------------ |
| 5533 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5534 | #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] | 5535 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5536 | Draws Picture picture, using Clip and Matrix; transforming picture with |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5537 | Matrix matrix, if provided; and use Paint paint Color_Alpha, Color_Filter, |
| 5538 | Image_Filter, and Blend_Mode, if provided. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5539 | |
| 5540 | matrix transformation is equivalent to: save(), concat(), drawPicture, restore(). |
| 5541 | paint use is equivalent to: saveLayer, drawPicture, restore(). |
| 5542 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5543 | #Param picture recorded drawing commands to play ## |
| 5544 | #Param matrix Matrix to rotate, scale, translate, and so on; may be nullptr ## |
| 5545 | #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] | 5546 | |
| 5547 | #Example |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5548 | void draw(SkCanvas* canvas) { |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5549 | SkPaint paint; |
| 5550 | SkPictureRecorder recorder; |
| 5551 | SkCanvas* recordingCanvas = recorder.beginRecording(50, 50); |
| 5552 | for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xff007f00 } ) { |
| 5553 | paint.setColor(color); |
| 5554 | recordingCanvas->drawRect({10, 10, 30, 40}, paint); |
| 5555 | recordingCanvas->translate(10, 10); |
| 5556 | recordingCanvas->scale(1.2f, 1.4f); |
| 5557 | } |
| 5558 | sk_sp<SkPicture> playback = recorder.finishRecordingAsPicture(); |
| 5559 | SkMatrix matrix; |
| 5560 | matrix.reset(); |
| 5561 | for (auto alpha : { 70, 140, 210 } ) { |
| 5562 | paint.setAlpha(alpha); |
| 5563 | canvas->drawPicture(playback, &matrix, &paint); |
| 5564 | matrix.preTranslate(70, 70); |
| 5565 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5566 | } |
| 5567 | ## |
| 5568 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5569 | #SeeAlso drawDrawable SkPicture SkPicture::playback |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5570 | |
| 5571 | ## |
| 5572 | |
| 5573 | # ------------------------------------------------------------------------------ |
| 5574 | |
| 5575 | #Method void drawVertices(const SkVertices* vertices, SkBlendMode mode, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5576 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5577 | #Line # draws Vertices, a triangle mesh ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5578 | Draws Vertices vertices, a triangle mesh, using Clip and Matrix. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5579 | If Vertices_Texs and Vertices_Colors are defined in vertices, and Paint paint |
| 5580 | contains Shader, Blend_Mode mode combines Vertices_Colors with Shader. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5581 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5582 | #Param vertices triangle mesh to draw ## |
| 5583 | #Param mode combines Vertices_Colors with Shader, if both are present ## |
| 5584 | #Param paint specifies the Shader, used as Vertices texture; may be nullptr ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5585 | |
| 5586 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5587 | void draw(SkCanvas* canvas) { |
| 5588 | SkPaint paint; |
| 5589 | SkPoint points[] = { { 0, 0 }, { 250, 0 }, { 100, 100 }, { 0, 250 } }; |
| 5590 | SkColor colors[] = { SK_ColorRED, SK_ColorBLUE, SK_ColorYELLOW, SK_ColorCYAN }; |
| 5591 | auto vertices = SkVertices::MakeCopy(SkVertices::kTriangleFan_VertexMode, |
| 5592 | SK_ARRAY_COUNT(points), points, nullptr, colors); |
| 5593 | canvas->drawVertices(vertices.get(), SkBlendMode::kSrc, paint); |
| 5594 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5595 | ## |
| 5596 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5597 | #SeeAlso drawPatch drawPicture |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5598 | |
| 5599 | ## |
| 5600 | |
| 5601 | # ------------------------------------------------------------------------------ |
| 5602 | |
| 5603 | #Method void drawVertices(const sk_sp<SkVertices>& vertices, SkBlendMode mode, const SkPaint& paint) |
| 5604 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5605 | Draws Vertices vertices, a triangle mesh, using Clip and Matrix. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5606 | If Vertices_Texs and Vertices_Colors are defined in vertices, and Paint paint |
| 5607 | contains Shader, Blend_Mode mode combines Vertices_Colors with Shader. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5608 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5609 | #Param vertices triangle mesh to draw ## |
| 5610 | #Param mode combines Vertices_Colors with Shader, if both are present ## |
| 5611 | #Param paint specifies the Shader, used as Vertices texture, may be nullptr ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5612 | |
| 5613 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5614 | void draw(SkCanvas* canvas) { |
| 5615 | SkPaint paint; |
| 5616 | SkPoint points[] = { { 0, 0 }, { 250, 0 }, { 100, 100 }, { 0, 250 } }; |
| 5617 | SkPoint texs[] = { { 0, 0 }, { 0, 250 }, { 250, 250 }, { 250, 0 } }; |
| 5618 | SkColor colors[] = { SK_ColorRED, SK_ColorBLUE, SK_ColorYELLOW, SK_ColorCYAN }; |
| 5619 | paint.setShader(SkGradientShader::MakeLinear(points, colors, nullptr, 4, |
| 5620 | SkShader::kClamp_TileMode)); |
| 5621 | auto vertices = SkVertices::MakeCopy(SkVertices::kTriangleFan_VertexMode, |
| 5622 | SK_ARRAY_COUNT(points), points, texs, colors); |
Ruiqi Mao | 94d57c4 | 2018-07-02 15:20:10 -0400 | [diff] [blame] | 5623 | canvas->drawVertices(vertices, SkBlendMode::kDarken, paint); |
| 5624 | } |
| 5625 | ## |
| 5626 | |
| 5627 | #SeeAlso drawPatch drawPicture |
| 5628 | |
| 5629 | ## |
| 5630 | |
| 5631 | # ------------------------------------------------------------------------------ |
| 5632 | |
Ruiqi Mao | c97a339 | 2018-08-15 10:44:19 -0400 | [diff] [blame] | 5633 | #Method void drawVertices(const SkVertices* vertices, const SkVertices::Bone bones[], |
| 5634 | int boneCount, SkBlendMode mode, const SkPaint& paint) |
Ruiqi Mao | 94d57c4 | 2018-07-02 15:20:10 -0400 | [diff] [blame] | 5635 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5636 | Draws Vertices vertices, a triangle mesh, using Clip and Matrix. Bone data is used to |
Ruiqi Mao | 94d57c4 | 2018-07-02 15:20:10 -0400 | [diff] [blame] | 5637 | deform vertices with bone weights. |
| 5638 | If Vertices_Texs and Vertices_Colors are defined in vertices, and Paint paint |
| 5639 | contains Shader, Blend_Mode mode combines Vertices_Colors with Shader. |
| 5640 | The first element of bones should be an object to world space transformation matrix that |
| 5641 | will be applied before performing mesh deformations. If no such transformation is needed, |
| 5642 | it should be the identity matrix. |
Ruiqi Mao | c97a339 | 2018-08-15 10:44:19 -0400 | [diff] [blame] | 5643 | boneCount must be at most 80, and thus the size of bones should be at most 80. |
Ruiqi Mao | 94d57c4 | 2018-07-02 15:20:10 -0400 | [diff] [blame] | 5644 | |
| 5645 | #Param vertices triangle mesh to draw ## |
| 5646 | #Param bones bone matrix data ## |
| 5647 | #Param boneCount number of bone matrices ## |
| 5648 | #Param mode combines Vertices_Colors with Shader, if both are present ## |
| 5649 | #Param paint specifies the Shader, used as Vertices texture, may be nullptr ## |
| 5650 | |
Ruiqi Mao | c97a339 | 2018-08-15 10:44:19 -0400 | [diff] [blame] | 5651 | #NoExample |
Ruiqi Mao | 94d57c4 | 2018-07-02 15:20:10 -0400 | [diff] [blame] | 5652 | void draw(SkCanvas* canvas) { |
| 5653 | SkPaint paint; |
| 5654 | SkPoint points[] = { { 0, 0 }, { 250, 0 }, { 100, 100 }, { 0, 250 } }; |
| 5655 | SkPoint texs[] = { { 0, 0 }, { 0, 250 }, { 250, 250 }, { 250, 0 } }; |
| 5656 | SkColor colors[] = { SK_ColorRED, SK_ColorBLUE, SK_ColorYELLOW, SK_ColorCYAN }; |
| 5657 | SkVertices::BoneIndices boneIndices[] = { { 0, 0, 0, 0 }, |
| 5658 | { 1, 0, 0, 0 }, |
| 5659 | { 2, 0, 0, 0 }, |
| 5660 | { 3, 0, 0, 0 } }; |
| 5661 | SkVertices::BoneWeights boneWeights[] = { { 0.0f, 0.0f, 0.0f, 0.0f }, |
| 5662 | { 1.0f, 0.0f, 0.0f, 0.0f }, |
| 5663 | { 1.0f, 0.0f, 0.0f, 0.0f }, |
| 5664 | { 1.0f, 0.0f, 0.0f, 0.0f } }; |
Ruiqi Mao | c97a339 | 2018-08-15 10:44:19 -0400 | [diff] [blame] | 5665 | SkVertices::Bone bones[] = { {{ 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f }}, |
| 5666 | {{ 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 20.0f }}, |
| 5667 | {{ 1.0f, 0.0f, 0.0f, 1.0f, 50.0f, 50.0f }}, |
| 5668 | {{ 1.0f, 0.0f, 0.0f, 1.0f, 20.0f, 0.0f }} }; |
Ruiqi Mao | 94d57c4 | 2018-07-02 15:20:10 -0400 | [diff] [blame] | 5669 | paint.setShader(SkGradientShader::MakeLinear(points, colors, nullptr, 4, |
| 5670 | SkShader::kClamp_TileMode)); |
| 5671 | auto vertices = SkVertices::MakeCopy(SkVertices::kTriangleFan_VertexMode, |
| 5672 | SK_ARRAY_COUNT(points), points, texs, colors, boneIndices, boneWeights); |
| 5673 | canvas->drawVertices(vertices.get(), bones, SK_ARRAY_COUNT(bones), SkBlendMode::kDarken, paint); |
| 5674 | } |
| 5675 | ## |
| 5676 | |
| 5677 | #SeeAlso drawPatch drawPicture |
| 5678 | |
| 5679 | ## |
| 5680 | |
| 5681 | # ------------------------------------------------------------------------------ |
| 5682 | |
Ruiqi Mao | c97a339 | 2018-08-15 10:44:19 -0400 | [diff] [blame] | 5683 | #Method void drawVertices(const sk_sp<SkVertices>& vertices, const SkVertices::Bone bones[], |
| 5684 | int boneCount, SkBlendMode mode, const SkPaint& paint) |
Ruiqi Mao | 94d57c4 | 2018-07-02 15:20:10 -0400 | [diff] [blame] | 5685 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5686 | Draws Vertices vertices, a triangle mesh, using Clip and Matrix. Bone data is used to |
Ruiqi Mao | 94d57c4 | 2018-07-02 15:20:10 -0400 | [diff] [blame] | 5687 | deform vertices with bone weights. |
| 5688 | If Vertices_Texs and Vertices_Colors are defined in vertices, and Paint paint |
| 5689 | contains Shader, Blend_Mode mode combines Vertices_Colors with Shader. |
| 5690 | The first element of bones should be an object to world space transformation matrix that |
| 5691 | will be applied before performing mesh deformations. If no such transformation is needed, |
| 5692 | it should be the identity matrix. |
Ruiqi Mao | c97a339 | 2018-08-15 10:44:19 -0400 | [diff] [blame] | 5693 | boneCount must be at most 80, and thus the size of bones should be at most 80. |
Ruiqi Mao | 94d57c4 | 2018-07-02 15:20:10 -0400 | [diff] [blame] | 5694 | |
| 5695 | #Param vertices triangle mesh to draw ## |
| 5696 | #Param bones bone matrix data ## |
| 5697 | #Param boneCount number of bone matrices ## |
| 5698 | #Param mode combines Vertices_Colors with Shader, if both are present ## |
| 5699 | #Param paint specifies the Shader, used as Vertices texture, may be nullptr ## |
| 5700 | |
Ruiqi Mao | c97a339 | 2018-08-15 10:44:19 -0400 | [diff] [blame] | 5701 | #NoExample |
Ruiqi Mao | 94d57c4 | 2018-07-02 15:20:10 -0400 | [diff] [blame] | 5702 | void draw(SkCanvas* canvas) { |
| 5703 | SkPaint paint; |
| 5704 | SkPoint points[] = { { 0, 0 }, { 250, 0 }, { 100, 100 }, { 0, 250 } }; |
| 5705 | SkPoint texs[] = { { 0, 0 }, { 0, 250 }, { 250, 250 }, { 250, 0 } }; |
| 5706 | SkColor colors[] = { SK_ColorRED, SK_ColorBLUE, SK_ColorYELLOW, SK_ColorCYAN }; |
| 5707 | SkVertices::BoneIndices boneIndices[] = { { 0, 0, 0, 0 }, |
| 5708 | { 1, 0, 0, 0 }, |
| 5709 | { 2, 0, 0, 0 }, |
| 5710 | { 3, 0, 0, 0 } }; |
| 5711 | SkVertices::BoneWeights boneWeights[] = { { 0.0f, 0.0f, 0.0f, 0.0f }, |
| 5712 | { 1.0f, 0.0f, 0.0f, 0.0f }, |
| 5713 | { 1.0f, 0.0f, 0.0f, 0.0f }, |
| 5714 | { 1.0f, 0.0f, 0.0f, 0.0f } }; |
Ruiqi Mao | c97a339 | 2018-08-15 10:44:19 -0400 | [diff] [blame] | 5715 | SkVertices::Bone bones[] = { {{ 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f }}, |
| 5716 | {{ 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 20.0f }}, |
| 5717 | {{ 1.0f, 0.0f, 0.0f, 1.0f, 50.0f, 50.0f }}, |
| 5718 | {{ 1.0f, 0.0f, 0.0f, 1.0f, 20.0f, 0.0f }} }; |
Ruiqi Mao | 94d57c4 | 2018-07-02 15:20:10 -0400 | [diff] [blame] | 5719 | paint.setShader(SkGradientShader::MakeLinear(points, colors, nullptr, 4, |
| 5720 | SkShader::kClamp_TileMode)); |
| 5721 | auto vertices = SkVertices::MakeCopy(SkVertices::kTriangleFan_VertexMode, |
| 5722 | SK_ARRAY_COUNT(points), points, texs, colors, boneIndices, boneWeights); |
| 5723 | canvas->drawVertices(vertices, bones, SK_ARRAY_COUNT(bones), SkBlendMode::kDarken, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5724 | } |
| 5725 | ## |
| 5726 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5727 | #SeeAlso drawPatch drawPicture |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5728 | |
| 5729 | ## |
| 5730 | |
| 5731 | # ------------------------------------------------------------------------------ |
| 5732 | |
| 5733 | #Method void drawPatch(const SkPoint cubics[12], const SkColor colors[4], |
| 5734 | const SkPoint texCoords[4], SkBlendMode mode, const SkPaint& paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5735 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5736 | #Line # draws Coons_Patch ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5737 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5738 | Draws a Coons_Patch: the interpolation of four cubics with shared corners, |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 5739 | associating a color, and optionally a texture Point, with each corner. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5740 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 5741 | Coons_Patch uses Clip and Matrix, paint Shader, Color_Filter, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5742 | 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] | 5743 | 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] | 5744 | both are provided. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5745 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5746 | Point array cubics specifies four Cubics starting at the top-left corner, |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5747 | 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] | 5748 | first point. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5749 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5750 | Color array color associates colors with corners in top-left, top-right, |
| 5751 | bottom-right, bottom-left order. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5752 | |
| 5753 | If paint contains Shader, Point array texCoords maps Shader as texture to |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5754 | corners in top-left, top-right, bottom-right, bottom-left order. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5755 | |
Cary Clark | a523d2d | 2017-08-30 08:58:10 -0400 | [diff] [blame] | 5756 | #Param cubics Path_Cubic array, sharing common points ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5757 | #Param colors Color array, one for each corner ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5758 | #Param texCoords Point array of texture coordinates, mapping Shader to corners; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5759 | may be nullptr |
Cary Clark | 579985c | 2017-07-31 11:48:27 -0400 | [diff] [blame] | 5760 | #Param ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5761 | #Param mode Blend_Mode for colors, and for Shader if paint has one ## |
| 5762 | #Param paint Shader, Color_Filter, Blend_Mode, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5763 | |
| 5764 | #Example |
| 5765 | #Image 5 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5766 | void draw(SkCanvas* canvas) { |
| 5767 | // SkBitmap source = cmbkygk; |
| 5768 | SkPaint paint; |
| 5769 | paint.setFilterQuality(kLow_SkFilterQuality); |
| 5770 | paint.setAntiAlias(true); |
| 5771 | SkPoint cubics[] = { { 3, 1 }, { 4, 2 }, { 5, 1 }, { 7, 3 }, |
| 5772 | /* { 7, 3 }, */ { 6, 4 }, { 7, 5 }, { 5, 7 }, |
| 5773 | /* { 5, 7 }, */ { 4, 6 }, { 3, 7 }, { 1, 5 }, |
| 5774 | /* { 1, 5 }, */ { 2, 4 }, { 1, 3 }, /* { 3, 1 } */ }; |
| 5775 | SkColor colors[] = { 0xbfff0000, 0xbf0000ff, 0xbfff00ff, 0xbf00ffff }; |
| 5776 | SkPoint texCoords[] = { { -30, -30 }, { 162, -30}, { 162, 162}, { -30, 162} }; |
| 5777 | paint.setShader(SkShader::MakeBitmapShader(source, SkShader::kClamp_TileMode, |
| 5778 | SkShader::kClamp_TileMode, nullptr)); |
| 5779 | canvas->scale(15, 15); |
| 5780 | for (auto blend : { SkBlendMode::kSrcOver, SkBlendMode::kModulate, SkBlendMode::kXor } ) { |
| 5781 | canvas->drawPatch(cubics, colors, texCoords, blend, paint); |
| 5782 | canvas->translate(4, 4); |
| 5783 | } |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5784 | } |
| 5785 | ## |
| 5786 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5787 | #ToDo can patch use image filter? ## |
| 5788 | #SeeAlso SeeAlso drawVertices drawPicture |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5789 | |
| 5790 | ## |
| 5791 | |
| 5792 | # ------------------------------------------------------------------------------ |
| 5793 | |
| 5794 | #Method void drawPatch(const SkPoint cubics[12], const SkColor colors[4], |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5795 | const SkPoint texCoords[4], const SkPaint& paint) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5796 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5797 | Draws Cubic Coons_Patch: the interpolation of four cubics with shared corners, |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 5798 | associating a color, and optionally a texture Point, with each corner. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5799 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 5800 | Coons_Patch uses Clip and Matrix, paint Shader, Color_Filter, |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5801 | 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] | 5802 | 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] | 5803 | both are provided. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5804 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5805 | Point array cubics specifies four Cubics starting at the top-left corner, |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5806 | 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] | 5807 | first point. |
| 5808 | |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5809 | Color array color associates colors with corners in top-left, top-right, |
| 5810 | bottom-right, bottom-left order. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5811 | |
| 5812 | If paint contains Shader, Point array texCoords maps Shader as texture to |
Cary Clark | bc5697d | 2017-10-04 14:31:33 -0400 | [diff] [blame] | 5813 | corners in top-left, top-right, bottom-right, bottom-left order. |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5814 | |
Cary Clark | a523d2d | 2017-08-30 08:58:10 -0400 | [diff] [blame] | 5815 | #Param cubics Path_Cubic array, sharing common points ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5816 | #Param colors Color array, one for each corner ## |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5817 | #Param texCoords Point array of texture coordinates, mapping Shader to corners; |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5818 | may be nullptr |
Cary Clark | 579985c | 2017-07-31 11:48:27 -0400 | [diff] [blame] | 5819 | #Param ## |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5820 | #Param paint Shader, Color_Filter, Blend_Mode, used to draw ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5821 | |
| 5822 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5823 | void draw(SkCanvas* canvas) { |
| 5824 | SkPaint paint; |
| 5825 | paint.setAntiAlias(true); |
| 5826 | SkPoint cubics[] = { { 3, 1 }, { 4, 2 }, { 5, 1 }, { 7, 3 }, |
| 5827 | /* { 7, 3 }, */ { 6, 4 }, { 7, 5 }, { 5, 7 }, |
| 5828 | /* { 5, 7 }, */ { 4, 6 }, { 3, 7 }, { 1, 5 }, |
| 5829 | /* { 1, 5 }, */ { 2, 4 }, { 1, 3 }, /* { 3, 1 } */ }; |
| 5830 | SkColor colors[] = { SK_ColorRED, SK_ColorBLUE, SK_ColorYELLOW, SK_ColorCYAN }; |
| 5831 | canvas->scale(30, 30); |
| 5832 | canvas->drawPatch(cubics, colors, nullptr, paint); |
| 5833 | SkPoint text[] = { {3,0.9f}, {4,2.5f}, {5,0.9f}, {7.5f,3.2f}, {5.5f,4.2f}, |
| 5834 | {7.5f,5.2f}, {5,7.5f}, {4,5.9f}, {3,7.5f}, {0.5f,5.2f}, {2.5f,4.2f}, |
| 5835 | {0.5f,3.2f} }; |
| 5836 | paint.setTextSize(18.f / 30); |
| 5837 | paint.setTextAlign(SkPaint::kCenter_Align); |
| 5838 | for (int i = 0; i< 10; ++i) { |
| 5839 | char digit = '0' + i; |
| 5840 | canvas->drawText(&digit, 1, text[i].fX, text[i].fY, paint); |
| 5841 | } |
| 5842 | canvas->drawString("10", text[10].fX, text[10].fY, paint); |
| 5843 | canvas->drawString("11", text[11].fX, text[11].fY, paint); |
| 5844 | paint.setStyle(SkPaint::kStroke_Style); |
| 5845 | canvas->drawPoints(SkCanvas::kPolygon_PointMode, 12, cubics, paint); |
| 5846 | 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] | 5847 | } |
| 5848 | ## |
| 5849 | |
| 5850 | #Example |
| 5851 | #Image 6 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5852 | void draw(SkCanvas* canvas) { |
| 5853 | // SkBitmap source = checkerboard; |
| 5854 | SkPaint paint; |
| 5855 | paint.setFilterQuality(kLow_SkFilterQuality); |
| 5856 | paint.setAntiAlias(true); |
| 5857 | SkPoint cubics[] = { { 3, 1 }, { 4, 2 }, { 5, 1 }, { 7, 3 }, |
| 5858 | /* { 7, 3 }, */ { 6, 4 }, { 7, 5 }, { 5, 7 }, |
| 5859 | /* { 5, 7 }, */ { 4, 6 }, { 3, 7 }, { 1, 5 }, |
| 5860 | /* { 1, 5 }, */ { 2, 4 }, { 1, 3 }, /* { 3, 1 } */ }; |
| 5861 | SkPoint texCoords[] = { { 0, 0 }, { 0, 62}, { 62, 62}, { 62, 0 } }; |
| 5862 | paint.setShader(SkShader::MakeBitmapShader(source, SkShader::kClamp_TileMode, |
| 5863 | SkShader::kClamp_TileMode, nullptr)); |
| 5864 | canvas->scale(30, 30); |
| 5865 | canvas->drawPatch(cubics, nullptr, texCoords, paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5866 | } |
| 5867 | ## |
| 5868 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5869 | #ToDo can patch use image filter? ## |
| 5870 | #SeeAlso SeeAlso drawVertices drawPicture |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5871 | |
| 5872 | ## |
| 5873 | |
| 5874 | # ------------------------------------------------------------------------------ |
| 5875 | |
| 5876 | #Method void drawAtlas(const SkImage* atlas, const SkRSXform xform[], const SkRect tex[], |
| 5877 | const SkColor colors[], int count, SkBlendMode mode, const SkRect* cullRect, |
| 5878 | const SkPaint* paint) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 5879 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 5880 | #Line # draws sprites using Clip, Matrix, and Paint ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5881 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5882 | Draws 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] | 5883 | 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] | 5884 | to draw, if present. For each entry in the array, Rect tex locates sprite in |
| 5885 | atlas, and RSXform xform transforms it into destination space. |
| 5886 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5887 | xform, text, and colors if present, must contain count entries. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 5888 | Optional colors are applied for each sprite using Blend_Mode mode, treating |
| 5889 | sprite as source and colors as destination. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5890 | Optional cullRect is a conservative bounds of all transformed sprites. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5891 | If cullRect is outside of Clip, canvas can skip drawing. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5892 | |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 5893 | |
| 5894 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5895 | #Param atlas Image containing sprites ## |
| 5896 | #Param xform RSXform mappings for sprites in atlas ## |
| 5897 | #Param tex Rect locations of sprites in atlas ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 5898 | #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] | 5899 | #Param count number of sprites to draw ## |
| 5900 | #Param mode Blend_Mode combining colors and sprites ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 5901 | #Param cullRect bounds of transformed sprites for efficient clipping; may be nullptr ## |
| 5902 | #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] | 5903 | |
| 5904 | #Example |
| 5905 | #Image 3 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5906 | void draw(SkCanvas* canvas) { |
| 5907 | // SkBitmap source = mandrill; |
| 5908 | SkRSXform xforms[] = { { .5f, 0, 0, 0 }, {0, .5f, 200, 100 } }; |
| 5909 | SkRect tex[] = { { 0, 0, 250, 250 }, { 0, 0, 250, 250 } }; |
| 5910 | SkColor colors[] = { 0x7f55aa00, 0x7f3333bf }; |
| 5911 | const SkImage* imagePtr = image.get(); |
| 5912 | canvas->drawAtlas(imagePtr, xforms, tex, colors, 2, SkBlendMode::kSrcOver, nullptr, nullptr); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5913 | } |
| 5914 | ## |
| 5915 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5916 | #SeeAlso drawBitmap drawImage |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5917 | |
| 5918 | ## |
| 5919 | |
| 5920 | # ------------------------------------------------------------------------------ |
| 5921 | |
| 5922 | #Method void drawAtlas(const sk_sp<SkImage>& atlas, const SkRSXform xform[], const SkRect tex[], |
| 5923 | const SkColor colors[], int count, SkBlendMode mode, const SkRect* cullRect, |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5924 | const SkPaint* paint) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5925 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5926 | Draws 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] | 5927 | 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] | 5928 | to draw, if present. For each entry in the array, Rect tex locates sprite in |
| 5929 | atlas, and RSXform xform transforms it into destination space. |
| 5930 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5931 | xform, text, and colors if present, must contain count entries. |
| 5932 | Optional colors is applied for each sprite using Blend_Mode. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5933 | Optional cullRect is a conservative bounds of all transformed sprites. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5934 | If cullRect is outside of Clip, canvas can skip drawing. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5935 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5936 | #Param atlas Image containing sprites ## |
| 5937 | #Param xform RSXform mappings for sprites in atlas ## |
| 5938 | #Param tex Rect locations of sprites in atlas ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 5939 | #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] | 5940 | #Param count number of sprites to draw ## |
| 5941 | #Param mode Blend_Mode combining colors and sprites ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 5942 | #Param cullRect bounds of transformed sprites for efficient clipping; may be nullptr ## |
| 5943 | #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] | 5944 | |
| 5945 | #Example |
| 5946 | #Image 3 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5947 | void draw(SkCanvas* canvas) { |
| 5948 | // SkBitmap source = mandrill; |
| 5949 | SkRSXform xforms[] = { { .5f, 0, 0, 0 }, {0, .5f, 200, 100 } }; |
| 5950 | SkRect tex[] = { { 0, 0, 250, 250 }, { 0, 0, 250, 250 } }; |
| 5951 | SkColor colors[] = { 0x7f55aa00, 0x7f3333bf }; |
| 5952 | SkPaint paint; |
| 5953 | paint.setAlpha(127); |
| 5954 | canvas->drawAtlas(image, xforms, tex, colors, 2, SkBlendMode::kPlus, nullptr, &paint); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5955 | } |
| 5956 | ## |
| 5957 | |
| 5958 | #ToDo bug in example on cpu side, gpu looks ok ## |
| 5959 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5960 | #SeeAlso drawBitmap drawImage |
| 5961 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5962 | ## |
| 5963 | |
| 5964 | # ------------------------------------------------------------------------------ |
| 5965 | |
| 5966 | #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] | 5967 | const SkRect* cullRect, const SkPaint* paint) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5968 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 5969 | Draws 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] | 5970 | 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] | 5971 | to draw, if present. For each entry in the array, Rect tex locates sprite in |
| 5972 | atlas, and RSXform xform transforms it into destination space. |
| 5973 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5974 | xform and text must contain count entries. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 5975 | Optional cullRect is a conservative bounds of all transformed sprites. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 5976 | If cullRect is outside of Clip, canvas can skip drawing. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5977 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5978 | #Param atlas Image containing sprites ## |
| 5979 | #Param xform RSXform mappings for sprites in atlas ## |
| 5980 | #Param tex Rect locations of sprites in atlas ## |
| 5981 | #Param count number of sprites to draw ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 5982 | #Param cullRect bounds of transformed sprites for efficient clipping; may be nullptr ## |
| 5983 | #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] | 5984 | |
| 5985 | #Example |
| 5986 | #Image 3 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 5987 | void draw(SkCanvas* canvas) { |
| 5988 | // sk_sp<SkImage> image = mandrill; |
| 5989 | SkRSXform xforms[] = { { .5f, 0, 0, 0 }, {0, .5f, 200, 100 } }; |
| 5990 | SkRect tex[] = { { 0, 0, 250, 250 }, { 0, 0, 250, 250 } }; |
| 5991 | const SkImage* imagePtr = image.get(); |
| 5992 | canvas->drawAtlas(imagePtr, xforms, tex, 2, nullptr, nullptr); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5993 | } |
| 5994 | ## |
| 5995 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 5996 | #SeeAlso drawBitmap drawImage |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 5997 | |
| 5998 | ## |
| 5999 | |
| 6000 | # ------------------------------------------------------------------------------ |
| 6001 | |
| 6002 | #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] | 6003 | int count, const SkRect* cullRect, const SkPaint* paint) |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6004 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 6005 | Draws 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] | 6006 | 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] | 6007 | to draw, if present. For each entry in the array, Rect tex locates sprite in |
| 6008 | atlas, and RSXform xform transforms it into destination space. |
| 6009 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6010 | xform and text must contain count entries. |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 6011 | Optional cullRect is a conservative bounds of all transformed sprites. |
Cary Clark | ce10124 | 2017-09-01 15:51:02 -0400 | [diff] [blame] | 6012 | If cullRect is outside of Clip, canvas can skip drawing. |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6013 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6014 | #Param atlas Image containing sprites ## |
| 6015 | #Param xform RSXform mappings for sprites in atlas ## |
| 6016 | #Param tex Rect locations of sprites in atlas ## |
| 6017 | #Param count number of sprites to draw ## |
Cary Clark | 6fc5041 | 2017-09-21 12:31:06 -0400 | [diff] [blame] | 6018 | #Param cullRect bounds of transformed sprites for efficient clipping; may be nullptr ## |
| 6019 | #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] | 6020 | |
| 6021 | #Example |
| 6022 | #Image 3 |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6023 | void draw(SkCanvas* canvas) { |
| 6024 | // sk_sp<SkImage> image = mandrill; |
| 6025 | SkRSXform xforms[] = { { 1, 0, 0, 0 }, {0, 1, 300, 100 } }; |
| 6026 | SkRect tex[] = { { 0, 0, 200, 200 }, { 200, 0, 400, 200 } }; |
| 6027 | canvas->drawAtlas(image, xforms, tex, 2, nullptr, nullptr); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6028 | } |
| 6029 | ## |
| 6030 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 6031 | #SeeAlso drawBitmap drawImage |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6032 | |
| 6033 | ## |
| 6034 | |
| 6035 | # ------------------------------------------------------------------------------ |
| 6036 | |
Cary Clark | 73fa972 | 2017-08-29 17:36:51 -0400 | [diff] [blame] | 6037 | #Method void drawDrawable(SkDrawable* drawable, const SkMatrix* matrix = nullptr) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 6038 | #In Draw |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 6039 | #Line # draws Drawable, encapsulated drawing commands ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 6040 | Draws Drawable drawable using Clip and Matrix, concatenated with |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6041 | optional matrix. |
| 6042 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 6043 | If Canvas has an asynchronous implementation, as is the case |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6044 | when it is recording into Picture, then drawable will be referenced, |
| 6045 | so that SkDrawable::draw() can be called when the operation is finalized. To force |
| 6046 | immediate drawing, call SkDrawable::draw() instead. |
| 6047 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6048 | #Param drawable custom struct encapsulating drawing commands ## |
| 6049 | #Param matrix transformation applied to drawing; may be nullptr ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6050 | |
| 6051 | #Example |
| 6052 | #Height 100 |
| 6053 | #Function |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6054 | struct MyDrawable : public SkDrawable { |
| 6055 | SkRect onGetBounds() override { return SkRect::MakeWH(50, 100); } |
| 6056 | |
| 6057 | void onDraw(SkCanvas* canvas) override { |
| 6058 | SkPath path; |
| 6059 | path.conicTo(10, 90, 50, 90, 0.9f); |
| 6060 | SkPaint paint; |
| 6061 | paint.setColor(SK_ColorBLUE); |
| 6062 | canvas->drawRect(path.getBounds(), paint); |
| 6063 | paint.setAntiAlias(true); |
| 6064 | paint.setColor(SK_ColorWHITE); |
| 6065 | canvas->drawPath(path, paint); |
| 6066 | } |
| 6067 | }; |
| 6068 | |
| 6069 | #Function ## |
| 6070 | void draw(SkCanvas* canvas) { |
| 6071 | sk_sp<SkDrawable> drawable(new MyDrawable); |
| 6072 | SkMatrix matrix; |
| 6073 | matrix.setTranslate(10, 10); |
| 6074 | canvas->drawDrawable(drawable.get(), &matrix); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6075 | } |
| 6076 | ## |
| 6077 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 6078 | #SeeAlso SkDrawable drawPicture |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6079 | |
| 6080 | ## |
| 6081 | |
| 6082 | # ------------------------------------------------------------------------------ |
| 6083 | |
| 6084 | #Method void drawDrawable(SkDrawable* drawable, SkScalar x, SkScalar y) |
| 6085 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 6086 | Draws Drawable drawable using Clip and Matrix, offset by (x, y). |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6087 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 6088 | If Canvas has an asynchronous implementation, as is the case |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6089 | when it is recording into Picture, then drawable will be referenced, |
| 6090 | so that SkDrawable::draw() can be called when the operation is finalized. To force |
| 6091 | immediate drawing, call SkDrawable::draw() instead. |
| 6092 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6093 | #Param drawable custom struct encapsulating drawing commands ## |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 6094 | #Param x offset into Canvas writable pixels on x-axis ## |
| 6095 | #Param y offset into Canvas writable pixels on y-axis ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6096 | |
| 6097 | #Example |
| 6098 | #Height 100 |
| 6099 | #Function |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6100 | struct MyDrawable : public SkDrawable { |
| 6101 | SkRect onGetBounds() override { return SkRect::MakeWH(50, 100); } |
| 6102 | |
| 6103 | void onDraw(SkCanvas* canvas) override { |
| 6104 | SkPath path; |
| 6105 | path.conicTo(10, 90, 50, 90, 0.9f); |
| 6106 | SkPaint paint; |
| 6107 | paint.setColor(SK_ColorBLUE); |
| 6108 | canvas->drawRect(path.getBounds(), paint); |
| 6109 | paint.setAntiAlias(true); |
| 6110 | paint.setColor(SK_ColorWHITE); |
| 6111 | canvas->drawPath(path, paint); |
| 6112 | } |
| 6113 | }; |
| 6114 | |
| 6115 | #Function ## |
| 6116 | void draw(SkCanvas* canvas) { |
| 6117 | sk_sp<SkDrawable> drawable(new MyDrawable); |
| 6118 | canvas->drawDrawable(drawable.get(), 10, 10); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6119 | } |
| 6120 | ## |
| 6121 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 6122 | #SeeAlso SkDrawable drawPicture |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6123 | |
| 6124 | ## |
| 6125 | |
| 6126 | # ------------------------------------------------------------------------------ |
| 6127 | |
| 6128 | #Method void drawAnnotation(const SkRect& rect, const char key[], SkData* value) |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 6129 | #In Draw |
| 6130 | #In Utility |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 6131 | #Line # associates a Rect with a key-value pair ## |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 6132 | Associates 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] | 6133 | a null-terminated utf8 string, and optional value is stored as Data. |
| 6134 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 6135 | Only some canvas implementations, such as recording to Picture, or drawing to |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6136 | Document_PDF, use annotations. |
| 6137 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6138 | #Param rect Rect extent of canvas to annotate ## |
| 6139 | #Param key string used for lookup ## |
| 6140 | #Param value data holding value stored in annotation ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6141 | |
| 6142 | #Example |
| 6143 | #Height 1 |
| 6144 | const char text[] = "Click this link!"; |
| 6145 | SkRect bounds; |
| 6146 | SkPaint paint; |
| 6147 | paint.setTextSize(40); |
| 6148 | (void)paint.measureText(text, strlen(text), &bounds); |
| 6149 | const char url[] = "https://www.google.com/"; |
| 6150 | sk_sp<SkData> urlData(SkData::MakeWithCString(url)); |
| 6151 | canvas->drawAnnotation(bounds, "url_key", urlData.get()); |
| 6152 | ## |
| 6153 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 6154 | #SeeAlso SkPicture SkDocument |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6155 | |
| 6156 | ## |
| 6157 | |
| 6158 | # ------------------------------------------------------------------------------ |
| 6159 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 6160 | #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] | 6161 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 6162 | Associates Rect on Canvas when an annotation; a key-value pair, where the key is |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6163 | a null-terminated utf8 string, and optional value is stored as Data. |
| 6164 | |
Herb Derby | efe39bc | 2018-05-01 17:06:20 -0400 | [diff] [blame] | 6165 | Only some canvas implementations, such as recording to Picture, or drawing to |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6166 | Document_PDF, use annotations. |
| 6167 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6168 | #Param rect Rect extent of canvas to annotate ## |
| 6169 | #Param key string used for lookup ## |
| 6170 | #Param value data holding value stored in annotation ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6171 | |
| 6172 | #Example |
| 6173 | #Height 1 |
| 6174 | const char text[] = "Click this link!"; |
| 6175 | SkRect bounds; |
| 6176 | SkPaint paint; |
| 6177 | paint.setTextSize(40); |
| 6178 | (void)paint.measureText(text, strlen(text), &bounds); |
| 6179 | const char url[] = "https://www.google.com/"; |
| 6180 | sk_sp<SkData> urlData(SkData::MakeWithCString(url)); |
| 6181 | canvas->drawAnnotation(bounds, "url_key", urlData.get()); |
| 6182 | ## |
| 6183 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 6184 | #SeeAlso SkPicture SkDocument |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6185 | |
| 6186 | ## |
| 6187 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6188 | # ------------------------------------------------------------------------------ |
| 6189 | |
| 6190 | #Method virtual bool isClipEmpty() const |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 6191 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 6192 | #Line # returns if Clip is empty ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6193 | Returns true if Clip is empty; that is, nothing will draw. |
| 6194 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6195 | May do work when called; it should not be called |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6196 | more often than needed. However, once called, subsequent calls perform no |
| 6197 | work until Clip changes. |
| 6198 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6199 | #Return true if Clip is empty ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6200 | |
| 6201 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6202 | void draw(SkCanvas* canvas) { |
| 6203 | SkDebugf("clip is%s empty\n", canvas->isClipEmpty() ? "" : " not"); |
| 6204 | SkPath path; |
| 6205 | canvas->clipPath(path); |
| 6206 | SkDebugf("clip is%s empty\n", canvas->isClipEmpty() ? "" : " not"); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6207 | } |
| 6208 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6209 | clip is not empty |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6210 | clip is empty |
| 6211 | ## |
| 6212 | ## |
| 6213 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 6214 | #SeeAlso isClipRect getLocalClipBounds getDeviceClipBounds |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6215 | |
| 6216 | ## |
| 6217 | |
| 6218 | # ------------------------------------------------------------------------------ |
| 6219 | |
| 6220 | #Method virtual bool isClipRect() const |
Cary Clark | 78de751 | 2018-02-07 07:27:09 -0500 | [diff] [blame] | 6221 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 6222 | #Line # returns if Clip is Rect and not empty ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6223 | Returns true if Clip is Rect and not empty. |
| 6224 | Returns false if the clip is empty, or if it is not Rect. |
| 6225 | |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6226 | #Return true if Clip is Rect and not empty ## |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6227 | |
| 6228 | #Example |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6229 | void draw(SkCanvas* canvas) { |
| 6230 | SkDebugf("clip is%s rect\n", canvas->isClipRect() ? "" : " not"); |
| 6231 | canvas->clipRect({0, 0, 0, 0}); |
| 6232 | SkDebugf("clip is%s rect\n", canvas->isClipRect() ? "" : " not"); |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6233 | } |
| 6234 | #StdOut |
Cary Clark | bad5ad7 | 2017-08-03 17:14:08 -0400 | [diff] [blame] | 6235 | clip is rect |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6236 | clip is not rect |
| 6237 | ## |
| 6238 | ## |
| 6239 | |
Cary Clark | 2ade997 | 2017-11-02 17:49:34 -0400 | [diff] [blame] | 6240 | #SeeAlso isClipEmpty getLocalClipBounds getDeviceClipBounds |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6241 | |
| 6242 | ## |
| 6243 | |
| 6244 | #Class SkCanvas ## |
Cary Clark | 884dd7d | 2017-10-11 10:37:52 -0400 | [diff] [blame] | 6245 | |
Cary Clark | 8032b98 | 2017-07-28 11:04:54 -0400 | [diff] [blame] | 6246 | #Topic Canvas ## |