Flutter Engine
The Flutter Engine
Bitmap_extractSubset.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.
4REG_FIDDLE(Bitmap_extractSubset, 256, 256, true, 3) {
5void draw(SkCanvas* canvas) {
8 SkDebugf("bounds: %d, %d, %d, %d\n", bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
9 SkBitmap subset;
10 for (int left: { -100, 0, 100, 1000 } ) {
11 for (int right: { 0, 100, 1000 } ) {
12 SkIRect b = SkIRect::MakeLTRB(left, 100, right, 200);
13 bool success = source.extractSubset(&subset, b);
14 SkDebugf("subset: %4d, %4d, %4d, %4d ", b.fLeft, b.fTop, b.fRight, b.fBottom);
15 SkDebugf("success; %s", success ? "true" : "false");
16 if (success) {
17 subset.getBounds(&s);
18 SkDebugf(" subset: %d, %d, %d, %d", s.fLeft, s.fTop, s.fRight, s.fBottom);
19 }
20 SkDebugf("\n");
21 }
22 }
23}
24} // END FIDDLE
REG_FIDDLE(Bitmap_extractSubset, 256, 256, true, 3)
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static bool left(const SkPoint &p0, const SkPoint &p1)
static bool right(const SkPoint &p0, const SkPoint &p1)
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
void getBounds(SkRect *bounds) const
Definition: SkBitmap.cpp:98
bool extractSubset(SkBitmap *dst, const SkIRect &subset) const
Definition: SkBitmap.cpp:453
SkBitmap source
Definition: examples.cpp:28
static bool b
struct MyStruct s
Optional< SkRect > bounds
Definition: SkRecords.h:189
Definition: SkRect.h:32
static constexpr SkIRect MakeLTRB(int32_t l, int32_t t, int32_t r, int32_t b)
Definition: SkRect.h:91