Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 1 | #Topic Picture |
| 2 | #Alias Pictures ## |
| 3 | #Alias Picture_Reference ## |
| 4 | |
| 5 | #Class SkPicture |
| 6 | |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 7 | Picture records drawing commands made to Canvas. The command stream may be |
| 8 | played in whole or in part at a later time. |
| 9 | |
| 10 | Picture is an abstract class. Picture may be generated by Picture_Recorder |
| 11 | or Drawable, or from Picture previously saved to Data or Stream. |
| 12 | |
| 13 | Picture may contain any Canvas drawing command, as well as one or more |
| 14 | Canvas_Matrix or Canvas_Clip. Picture has a cull Rect, which is used as |
| 15 | a bounding box hint. To limit Picture bounds, use Canvas_Clip when |
| 16 | recording or drawing Picture. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 17 | |
| 18 | #Subtopic Overview |
| 19 | #Populate |
| 20 | ## |
| 21 | |
| 22 | #Subtopic Class |
| 23 | #Populate |
| 24 | ## |
| 25 | |
| 26 | #Subtopic Member_Function |
| 27 | #Populate |
| 28 | ## |
| 29 | |
| 30 | # ------------------------------------------------------------------------------ |
| 31 | |
| 32 | #Class AbortCallback |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 33 | #Line # utility to stop picture playback ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 34 | |
| 35 | #Code |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 36 | class AbortCallback { |
| 37 | public: |
| 38 | AbortCallback() {} |
| 39 | virtual ~AbortCallback() {} |
| 40 | virtual bool abort() = 0; |
| 41 | }; |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 42 | ## |
| 43 | |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 44 | AbortCallback is an abstract class. An implementation of AbortCallback may |
| 45 | passed as a parameter to SkPicture::playback, to stop it before all drawing |
| 46 | commands have been processed. |
| 47 | |
| 48 | If AbortCallback::abort returns true, SkPicture::playback is interrupted. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 49 | |
| 50 | # ------------------------------------------------------------------------------ |
| 51 | |
| 52 | #Method AbortCallback() |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 53 | #In Constructor |
| 54 | #Line # defines default constructor ## |
| 55 | Has no effect. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 56 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 57 | #Return abstract class cannot be instantiated ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 58 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 59 | #NoExample |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 60 | ## |
| 61 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 62 | #SeeAlso playback |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 63 | |
| 64 | #Method ## |
| 65 | |
| 66 | # ------------------------------------------------------------------------------ |
| 67 | |
| 68 | #Method virtual ~AbortCallback() |
| 69 | #In Constructor |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 70 | #Line # defines default destructor ## |
| 71 | Has no effect. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 72 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 73 | #NoExample |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 74 | ## |
| 75 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 76 | #SeeAlso playback |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 77 | |
| 78 | #Method ## |
| 79 | |
| 80 | # ------------------------------------------------------------------------------ |
| 81 | |
| 82 | #Method virtual bool abort() = 0 |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 83 | #In Utility |
| 84 | #Line # aborts playback by callback ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 85 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 86 | Stops Picture playback when some condition is met. A subclass of |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 87 | AbortCallback provides an override for abort() that can stop SkPicture::playback. |
| 88 | |
| 89 | The part of Picture drawn when aborted is undefined. Picture instantiations are |
| 90 | free to stop drawing at different points during playback. |
| 91 | |
| 92 | If the abort happens inside one or more calls to SkCanvas::save(), stack |
| 93 | of Canvas_Matrix and Canvas_Clip values is restored to its state before |
| 94 | SkPicture::playback was called. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 95 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 96 | #Return true to stop playback ## |
| 97 | |
| 98 | #NoExample |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 99 | ## |
| 100 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 101 | #SeeAlso playback |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 102 | |
| 103 | #Method ## |
| 104 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 105 | #Example |
| 106 | #Description |
| 107 | JustOneDraw allows the black rectangle to draw but stops playback before the |
| 108 | white rectangle appears. |
| 109 | ## |
| 110 | #Function |
| 111 | class JustOneDraw : public SkPicture::AbortCallback { |
| 112 | public: |
| 113 | bool abort() override { return fCalls++ > 0; } |
| 114 | private: |
| 115 | int fCalls = 0; |
| 116 | }; |
| 117 | ## |
| 118 | |
| 119 | void draw(SkCanvas* canvas) { |
| 120 | SkPictureRecorder recorder; |
| 121 | SkCanvas* pictureCanvas = recorder.beginRecording({0, 0, 256, 256}); |
| 122 | SkPaint paint; |
| 123 | pictureCanvas->drawRect(SkRect::MakeWH(200, 200), paint); |
| 124 | paint.setColor(SK_ColorWHITE); |
| 125 | pictureCanvas->drawRect(SkRect::MakeLTRB(20, 20, 180, 180), paint); |
| 126 | sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture(); |
| 127 | JustOneDraw callback; |
| 128 | picture->playback(canvas, &callback); |
| 129 | } |
| 130 | |
| 131 | ## |
| 132 | |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 133 | #Class AbortCallback ## |
| 134 | |
| 135 | # ------------------------------------------------------------------------------ |
| 136 | |
| 137 | #Method static sk_sp<SkPicture> MakeFromStream(SkStream* stream, |
| 138 | const SkDeserialProcs* procs = nullptr) |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 139 | #In Constructor |
| 140 | #Line # constructs Picture from stream ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 141 | |
Cary Clark | d2ca79c | 2018-08-10 13:09:13 -0400 | [diff] [blame] | 142 | Recreates Picture that was serialized into a stream. Returns constructed Picture |
| 143 | if successful; otherwise, returns nullptr. Fails if data does not permit |
| 144 | constructing valid Picture. |
| 145 | |
| 146 | procs.fPictureProc permits supplying a custom function to decode Picture. |
| 147 | If procs.fPictureProc is nullptr, default decoding is used. procs.fPictureCtx |
| 148 | may be used to provide user context to procs.fPictureProc; procs.fPictureProc |
| 149 | is called with a pointer to data, data byte length, and user context. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 150 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 151 | #Param stream container for serial data ## |
| 152 | #Param procs custom serial data decoders; may be nullptr ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 153 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 154 | #Return Picture constructed from stream data ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 155 | |
| 156 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 157 | SkPictureRecorder recorder;
|
| 158 | SkCanvas* pictureCanvas = recorder.beginRecording({0, 0, 256, 256});
|
| 159 | SkPaint paint;
|
| 160 | pictureCanvas->drawRect(SkRect::MakeWH(200, 200), paint);
|
| 161 | paint.setColor(SK_ColorWHITE);
|
| 162 | pictureCanvas->drawRect(SkRect::MakeLTRB(20, 20, 180, 180), paint);
|
| 163 | sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture();
|
| 164 | SkDynamicMemoryWStream writableStream;
|
| 165 | picture->serialize(&writableStream);
|
| 166 | std::unique_ptr<SkStreamAsset> readableStream = writableStream.detachAsStream();
|
| 167 | sk_sp<SkPicture> copy = SkPicture::MakeFromStream(readableStream.get());
|
| 168 | copy->playback(canvas); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 169 | ## |
| 170 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 171 | #SeeAlso MakeFromData SkPictureRecorder |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 172 | |
| 173 | #Method ## |
| 174 | |
| 175 | # ------------------------------------------------------------------------------ |
| 176 | |
| 177 | #Method static sk_sp<SkPicture> MakeFromData(const SkData* data, |
| 178 | const SkDeserialProcs* procs = nullptr) |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 179 | #In Constructor |
| 180 | #Line # constructs Picture from data ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 181 | |
Cary Clark | d2ca79c | 2018-08-10 13:09:13 -0400 | [diff] [blame] | 182 | Recreates Picture that was serialized into data. Returns constructed Picture |
| 183 | if successful; otherwise, returns nullptr. Fails if data does not permit |
| 184 | constructing valid Picture. |
| 185 | |
| 186 | procs.fPictureProc permits supplying a custom function to decode Picture. |
| 187 | If procs.fPictureProc is nullptr, default decoding is used. procs.fPictureCtx |
| 188 | may be used to provide user context to procs.fPictureProc; procs.fPictureProc |
| 189 | is called with a pointer to data, data byte length, and user context. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 190 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 191 | #Param data container for serial data ## |
| 192 | #Param procs custom serial data decoders; may be nullptr ## |
| 193 | |
| 194 | #Return Picture constructed from data ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 195 | |
| 196 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 197 | SkPictureRecorder recorder;
|
| 198 | SkCanvas* pictureCanvas = recorder.beginRecording({0, 0, 256, 256});
|
| 199 | SkPaint paint;
|
| 200 | pictureCanvas->drawRect(SkRect::MakeWH(200, 200), paint);
|
| 201 | paint.setColor(SK_ColorWHITE);
|
| 202 | pictureCanvas->drawRect(SkRect::MakeLTRB(20, 20, 180, 180), paint);
|
| 203 | sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture();
|
| 204 | SkDynamicMemoryWStream writableStream;
|
| 205 | picture->serialize(&writableStream);
|
| 206 | sk_sp<SkData> readableData = writableStream.detachAsData();
|
| 207 | sk_sp<SkPicture> copy = SkPicture::MakeFromData(readableData.get());
|
| 208 | copy->playback(canvas); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 209 | ## |
| 210 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 211 | #SeeAlso MakeFromStream SkPictureRecorder |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 212 | |
| 213 | #Method ## |
| 214 | |
| 215 | # ------------------------------------------------------------------------------ |
| 216 | |
| 217 | #Method static sk_sp<SkPicture> MakeFromData(const void* data, size_t size, |
| 218 | const SkDeserialProcs* procs = nullptr) |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 219 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 220 | #Param data pointer to serial data ## |
| 221 | #Param size size of data ## |
| 222 | #Param procs custom serial data decoders; may be nullptr ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 223 | |
Cary Clark | d2ca79c | 2018-08-10 13:09:13 -0400 | [diff] [blame] | 224 | Recreates Picture that was serialized into data. Returns constructed Picture |
| 225 | if successful; otherwise, returns nullptr. Fails if size is smaller than |
| 226 | required data length, or if data does not permit constructing valid Picture. |
| 227 | |
| 228 | procs.fPictureProc permits supplying a custom function to decode Picture. |
| 229 | If procs.fPictureProc is nullptr, default decoding is used. procs.fPictureCtx |
| 230 | may be used to provide user context to procs.fPictureProc; procs.fPictureProc |
| 231 | is called with a pointer to data, data byte length, and user context. |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 232 | |
| 233 | #Return Picture constructed from data ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 234 | |
| 235 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 236 | SkPictureRecorder recorder;
|
| 237 | SkCanvas* pictureCanvas = recorder.beginRecording({0, 0, 256, 256});
|
| 238 | SkPaint paint;
|
| 239 | pictureCanvas->drawRect(SkRect::MakeWH(200, 200), paint);
|
| 240 | paint.setColor(SK_ColorWHITE);
|
| 241 | pictureCanvas->drawRect(SkRect::MakeLTRB(20, 20, 180, 180), paint);
|
| 242 | sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture();
|
| 243 | SkDynamicMemoryWStream writableStream;
|
| 244 | picture->serialize(&writableStream);
|
| 245 | sk_sp<SkData> readableData = writableStream.detachAsData();
|
| 246 | sk_sp<SkPicture> copy = SkPicture::MakeFromData(readableData->data(), readableData->size());
|
| 247 | copy->playback(canvas); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 248 | ## |
| 249 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 250 | #SeeAlso MakeFromStream SkPictureRecorder |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 251 | |
| 252 | #Method ## |
| 253 | |
| 254 | # ------------------------------------------------------------------------------ |
| 255 | |
| 256 | #Method virtual void playback(SkCanvas* canvas, AbortCallback* callback = nullptr) const = 0 |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 257 | #In Action |
| 258 | #Line # replays drawing commands on canvas ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 259 | |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 260 | Replays the drawing commands on the specified canvas. In the case that the |
| 261 | commands are recorded, each command in the Picture is sent separately to canvas. |
| 262 | |
| 263 | To add a single command to draw Picture to recording canvas, call |
| 264 | SkCanvas::drawPicture instead. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 265 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 266 | #Param canvas receiver of drawing commands ## |
| 267 | #Param callback allows interruption of playback ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 268 | |
| 269 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 270 | SkPictureRecorder recorder;
|
| 271 | SkCanvas* pictureCanvas = recorder.beginRecording({0, 0, 256, 256});
|
| 272 | SkPaint paint;
|
| 273 | pictureCanvas->drawRect(SkRect::MakeWH(200, 200), paint);
|
| 274 | paint.setColor(SK_ColorWHITE);
|
| 275 | pictureCanvas->drawRect(SkRect::MakeLTRB(20, 20, 180, 180), paint);
|
| 276 | sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture();
|
| 277 | picture->playback(canvas); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 278 | ## |
| 279 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 280 | #SeeAlso SkCanvas::drawPicture |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 281 | |
| 282 | #Method ## |
| 283 | |
| 284 | # ------------------------------------------------------------------------------ |
| 285 | |
| 286 | #Method virtual SkRect cullRect() const = 0 |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 287 | #In Property |
| 288 | #Line # returns bounds used to record Picture ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 289 | |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 290 | Returns cull Rect for this picture, passed in when Picture was created. |
| 291 | Returned Rect does not specify clipping Rect for Picture; cull is hint |
| 292 | of Picture bounds. |
| 293 | |
| 294 | Picture is free to discard recorded drawing commands that fall outside |
| 295 | cull. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 296 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 297 | #Return bounds passed when Picture was created ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 298 | |
| 299 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 300 | #Description |
| 301 | Picture recorded bounds are smaller than contents; contents outside recorded |
| 302 | bounds may be drawn, and are drawn in this example. |
| 303 | ## |
| 304 | SkPictureRecorder recorder;
|
| 305 | SkCanvas* pictureCanvas = recorder.beginRecording({64, 64, 192, 192});
|
| 306 | SkPaint paint;
|
| 307 | pictureCanvas->drawRect(SkRect::MakeWH(200, 200), paint);
|
| 308 | paint.setColor(SK_ColorWHITE);
|
| 309 | pictureCanvas->drawRect(SkRect::MakeLTRB(20, 20, 180, 180), paint);
|
| 310 | sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture();
|
| 311 | picture->playback(canvas);
|
| 312 | paint.setBlendMode(SkBlendMode::kModulate);
|
| 313 | paint.setColor(0x40404040);
|
| 314 | canvas->drawRect(picture->cullRect(), paint); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 315 | ## |
| 316 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 317 | #SeeAlso SkCanvas::clipRect |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 318 | |
| 319 | #Method ## |
| 320 | |
| 321 | # ------------------------------------------------------------------------------ |
| 322 | |
| 323 | #Method uint32_t uniqueID() const |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 324 | #In Property |
| 325 | #Line # returns identifier for Picture ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 326 | |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 327 | Returns a non-zero value unique among Pictures in Skia process. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 328 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 329 | #Return identifier for Picture ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 330 | |
| 331 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 332 | SkPictureRecorder recorder;
|
| 333 | recorder.beginRecording({0, 0, 0, 0});
|
| 334 | sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture();
|
| 335 | SkDebugf("empty picture id = %d\n", picture->uniqueID());
|
| 336 | sk_sp<SkPicture> placeholder = SkPicture::MakePlaceholder({0, 0, 0, 0});
|
| 337 | SkDebugf("placeholder id = %d\n", placeholder->uniqueID()); |
| 338 | #StdOut |
| 339 | empty picture id = 1
|
| 340 | placeholder id = 2 |
| 341 | ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 342 | ## |
| 343 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 344 | #SeeAlso SkRefCnt |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 345 | |
| 346 | #Method ## |
| 347 | |
| 348 | # ------------------------------------------------------------------------------ |
| 349 | |
| 350 | #Method sk_sp<SkData> serialize(const SkSerialProcs* procs = nullptr) const |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 351 | #In Utility |
Cary Clark | d2ca79c | 2018-08-10 13:09:13 -0400 | [diff] [blame] | 352 | #Line # writes Picture to Data ## |
| 353 | Returns storage containing Data describing Picture, using optional custom |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 354 | encoders. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 355 | |
Cary Clark | d2ca79c | 2018-08-10 13:09:13 -0400 | [diff] [blame] | 356 | procs.fPictureProc permits supplying a custom function to encode Picture. |
| 357 | If procs.fPictureProc is nullptr, default encoding is used. procs.fPictureCtx |
| 358 | may be used to provide user context to procs.fPictureProc; procs.fPictureProc |
| 359 | is called with a pointer to Picture and user context. |
| 360 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 361 | #Param procs custom serial data encoders; may be nullptr ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 362 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 363 | #Return storage containing serialized Picture ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 364 | |
| 365 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 366 | SkPictureRecorder recorder;
|
| 367 | SkCanvas* pictureCanvas = recorder.beginRecording({0, 0, 256, 256});
|
| 368 | SkPaint paint;
|
| 369 | pictureCanvas->drawRect(SkRect::MakeWH(200, 200), paint);
|
| 370 | paint.setColor(SK_ColorWHITE);
|
| 371 | pictureCanvas->drawRect(SkRect::MakeLTRB(20, 20, 180, 180), paint);
|
| 372 | sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture();
|
| 373 | sk_sp<SkData> readableData = picture->serialize();
|
| 374 | sk_sp<SkPicture> copy = SkPicture::MakeFromData(readableData->data(), readableData->size());
|
| 375 | copy->playback(canvas); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 376 | ## |
| 377 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 378 | #SeeAlso MakeFromData SkData SkSerialProcs |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 379 | |
| 380 | #Method ## |
| 381 | |
| 382 | # ------------------------------------------------------------------------------ |
| 383 | |
| 384 | #Method void serialize(SkWStream* stream, const SkSerialProcs* procs = nullptr) const |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 385 | Writes picture to stream, using optional custom encoders. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 386 | |
Cary Clark | d2ca79c | 2018-08-10 13:09:13 -0400 | [diff] [blame] | 387 | procs.fPictureProc permits supplying a custom function to encode Picture. |
| 388 | If procs.fPictureProc is nullptr, default encoding is used. procs.fPictureCtx |
| 389 | may be used to provide user context to procs.fPictureProc; procs.fPictureProc |
| 390 | is called with a pointer to Picture and user context. |
| 391 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 392 | #Param stream writable serial data stream ## |
| 393 | #Param procs custom serial data encoders; may be nullptr ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 394 | |
| 395 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 396 | SkPictureRecorder recorder;
|
| 397 | SkCanvas* pictureCanvas = recorder.beginRecording({0, 0, 256, 256});
|
| 398 | SkPaint paint;
|
| 399 | pictureCanvas->drawRect(SkRect::MakeWH(200, 200), paint);
|
| 400 | paint.setColor(SK_ColorWHITE);
|
| 401 | pictureCanvas->drawRect(SkRect::MakeLTRB(20, 20, 180, 180), paint);
|
| 402 | sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture();
|
| 403 | SkDynamicMemoryWStream writableStream;
|
| 404 | picture->serialize(&writableStream);
|
| 405 | sk_sp<SkData> readableData = writableStream.detachAsData();
|
| 406 | sk_sp<SkPicture> copy = SkPicture::MakeFromData(readableData->data(), readableData->size());
|
| 407 | copy->playback(canvas); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 408 | ## |
| 409 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 410 | #SeeAlso MakeFromStream SkWStream SkSerialProcs |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 411 | |
| 412 | #Method ## |
| 413 | |
| 414 | # ------------------------------------------------------------------------------ |
| 415 | |
| 416 | #Method static sk_sp<SkPicture> MakePlaceholder(SkRect cull) |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 417 | #In Constructor |
| 418 | #Line # constructs placeholder with unique identifier ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 419 | |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 420 | Returns a placeholder SkPicture. Result does not draw, and contains only |
| 421 | cull Rect, a hint of its bounds. Result is immutable; it cannot be changed |
| 422 | later. Result identifier is unique. |
| 423 | |
| 424 | Returned placeholder can be intercepted during playback to insert other |
| 425 | commands into Canvas draw stream. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 426 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 427 | #Param cull placeholder dimensions |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 428 | ## |
| 429 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 430 | #Return placeholder with unique identifier ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 431 | |
| 432 | #Example |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 433 | #Function |
| 434 | class MyCanvas : public SkCanvas { |
| 435 | public: |
| 436 | MyCanvas(SkCanvas* c) : canvas(c) {} |
| 437 | void onDrawPicture(const SkPicture* picture, const SkMatrix* ,
|
| 438 | const SkPaint* ) override {
|
| 439 | const SkRect rect = picture->cullRect(); |
| 440 | SkPaint redPaint; |
| 441 | redPaint.setColor(SK_ColorRED); |
| 442 | canvas->drawRect(rect, redPaint); |
| 443 | } |
| 444 | |
| 445 | SkCanvas* canvas;
|
| 446 | }; |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 447 | ## |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 448 | SkPictureRecorder recorder;
|
| 449 | SkCanvas* pictureCanvas = recorder.beginRecording({0, 0, 256, 256});
|
| 450 | sk_sp<SkPicture> placeholder = SkPicture::MakePlaceholder({10, 40, 80, 110});
|
| 451 | pictureCanvas->drawPicture(placeholder);
|
| 452 | sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture();
|
| 453 | MyCanvas myCanvas(canvas);
|
| 454 | myCanvas.drawPicture(picture);
|
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 455 | ## |
| 456 | |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 457 | #SeeAlso MakeFromStream MakeFromData uniqueID |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 458 | |
| 459 | #Method ## |
| 460 | |
| 461 | # ------------------------------------------------------------------------------ |
| 462 | |
| 463 | #Method virtual int approximateOpCount() const = 0 |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 464 | #In Property |
| 465 | #Line # returns approximate operation count ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 466 | |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 467 | Returns the approximate number of operations in Picture. Returned value |
| 468 | may be greater or less than the number of SkCanvas calls |
| 469 | recorded: some calls may be recorded as more than one operation, other |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 470 | calls may be optimized away. |
| 471 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 472 | #Return approximate operation count ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 473 | |
| 474 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 475 | SkPictureRecorder recorder;
|
| 476 | SkCanvas* pictureCanvas = recorder.beginRecording({0, 0, 256, 256});
|
| 477 | SkPaint paint;
|
| 478 | pictureCanvas->drawRect(SkRect::MakeWH(200, 200), paint);
|
| 479 | paint.setColor(SK_ColorWHITE);
|
| 480 | pictureCanvas->drawRect(SkRect::MakeLTRB(20, 20, 180, 180), paint);
|
| 481 | sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture();
|
| 482 | picture->playback(canvas); |
| 483 | std::string opCount = "approximate op count: " + std::to_string(picture->approximateOpCount()); |
| 484 | canvas->drawString(opCount.c_str(), 50, 220, SkPaint()); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 485 | ## |
| 486 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 487 | #SeeAlso approximateBytesUsed |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 488 | |
| 489 | #Method ## |
| 490 | |
| 491 | # ------------------------------------------------------------------------------ |
| 492 | |
| 493 | #Method virtual size_t approximateBytesUsed() const = 0 |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 494 | #In Property |
| 495 | #Line # returns approximate size ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 496 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 497 | Returns the approximate byte size of Picture. Does not include large objects |
Cary Clark | f960398 | 2018-07-17 08:20:27 -0400 | [diff] [blame] | 498 | referenced by Picture. |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 499 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 500 | #Return approximate size ## |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 501 | |
| 502 | #Example |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 503 | SkPictureRecorder recorder;
|
| 504 | SkCanvas* pictureCanvas = recorder.beginRecording({0, 0, 256, 256});
|
| 505 | SkPaint paint;
|
| 506 | pictureCanvas->drawRect(SkRect::MakeWH(200, 200), paint);
|
| 507 | paint.setColor(SK_ColorWHITE);
|
| 508 | pictureCanvas->drawRect(SkRect::MakeLTRB(20, 20, 180, 180), paint);
|
| 509 | sk_sp<SkPicture> picture = recorder.finishRecordingAsPicture();
|
| 510 | picture->playback(canvas); |
| 511 | std::string opCount = "approximate bytes used: " + std::to_string(picture->approximateBytesUsed()); |
| 512 | canvas->drawString(opCount.c_str(), 20, 220, SkPaint()); |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 513 | ## |
| 514 | |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 515 | #SeeAlso approximateOpCount |
Cary Clark | 224c700 | 2018-06-27 11:00:21 -0400 | [diff] [blame] | 516 | |
| 517 | #Method ## |
| 518 | |
| 519 | #Class SkPicture ## |
| 520 | |
| 521 | #Topic Picture ## |