Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
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 5 of file Image_DeferredFromPicture.cpp.

5 {
6void draw(SkCanvas* canvas) {
8 SkPictureRecorder recorder;
9 SkCanvas* recordingCanvas = recorder.beginRecording(50, 50);
10 for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xff007f00 } ) {
11 paint.setColor(color);
12 recordingCanvas->drawRect({10, 10, 30, 40}, paint);
13 recordingCanvas->translate(10, 10);
14 recordingCanvas->scale(1.2f, 1.4f);
15 }
17 int x = 0, y = 0;
18 for (auto alpha : { 70, 140, 210 } ) {
19 paint.setAlpha(alpha);
20 auto srgbColorSpace = SkColorSpace::MakeSRGB();
22 playback, {50, 50}, nullptr, &paint, SkImages::BitDepth::kU8, srgbColorSpace);
23 canvas->drawImage(image, x, y);
24 x += 70; y += 70;
25 }
26}
27} // END FIDDLE
SkColor4f color
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)
void translate(SkScalar dx, SkScalar dy)
void scale(SkScalar sx, SkScalar sy)
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
sk_sp< SkImage > image
Definition examples.cpp:29
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