Flutter Engine
The Flutter Engine
Functions
Image_DeferredFromPicture.cpp File Reference
#include "tools/fiddle/examples.h"

Go to the source code of this file.

Functions

 REG_FIDDLE (Image_DeferredFromPicture, 256, 256, false, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Image_DeferredFromPicture  ,
256  ,
256  ,
false  ,
 
)

Definition at line 4 of file Image_DeferredFromPicture.cpp.

4 {
5void draw(SkCanvas* canvas) {
7 SkPictureRecorder recorder;
8 SkCanvas* recordingCanvas = recorder.beginRecording(50, 50);
9 for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xff007f00 } ) {
10 paint.setColor(color);
11 recordingCanvas->drawRect({10, 10, 30, 40}, paint);
12 recordingCanvas->translate(10, 10);
13 recordingCanvas->scale(1.2f, 1.4f);
14 }
16 int x = 0, y = 0;
17 for (auto alpha : { 70, 140, 210 } ) {
18 paint.setAlpha(alpha);
19 auto srgbColorSpace = SkColorSpace::MakeSRGB();
21 playback, {50, 50}, nullptr, &paint, SkImages::BitDepth::kU8, srgbColorSpace);
22 canvas->drawImage(image, x, y);
23 x += 70; y += 70;
24 }
25}
26} // END FIDDLE
constexpr SkColor SK_ColorBLUE
Definition: SkColor.h:135
constexpr SkColor SK_ColorRED
Definition: SkColor.h:126
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
void drawRect(const SkRect &rect, const SkPaint &paint)
Definition: SkCanvas.cpp:1673
void translate(SkScalar dx, SkScalar dy)
Definition: SkCanvas.cpp:1278
void scale(SkScalar sx, SkScalar sy)
Definition: SkCanvas.cpp:1289
void drawImage(const SkImage *image, SkScalar left, SkScalar top)
Definition: SkCanvas.h:1528
static sk_sp< SkColorSpace > MakeSRGB()
SkCanvas * beginRecording(const SkRect &bounds, sk_sp< SkBBoxHierarchy > bbh)
sk_sp< SkPicture > finishRecordingAsPicture()
const Paint & paint
Definition: color_source.cc:38
DlColor color
double y
double x
SK_API sk_sp< SkImage > DeferredFromPicture(sk_sp< SkPicture > picture, const SkISize &dimensions, const SkMatrix *matrix, const SkPaint *paint, BitDepth bitDepth, sk_sp< SkColorSpace > colorSpace, SkSurfaceProps props)
@ kU8
uses 8-bit unsigned int per color component
sk_sp< const SkImage > image
Definition: SkRecords.h:269