Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Image_DeferredFromPicture.cpp
Go to the documentation of this file.
1// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
4// HASH=4aa2879b9e44dfd6648995326d2c4dcf
5REG_FIDDLE(Image_DeferredFromPicture, 256, 256, false, 0) {
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 }
16 sk_sp<SkPicture> playback = recorder.finishRecordingAsPicture();
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
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
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