blob: e658de510165c35d5bbe854036e21b9001c0f735 [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// 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.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=304148c50c91490bfd58e9222342419c
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Bitmap_extractSubset, 256, 256, true, 3) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 SkIRect bounds, s;
8 source.getBounds(&bounds);
9 SkDebugf("bounds: %d, %d, %d, %d\n", bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
10 SkBitmap subset;
11 for (int left: { -100, 0, 100, 1000 } ) {
12 for (int right: { 0, 100, 1000 } ) {
13 SkIRect b = SkIRect::MakeLTRB(left, 100, right, 200);
14 bool success = source.extractSubset(&subset, b);
15 SkDebugf("subset: %4d, %4d, %4d, %4d ", b.fLeft, b.fTop, b.fRight, b.fBottom);
16 SkDebugf("success; %s", success ? "true" : "false");
17 if (success) {
18 subset.getBounds(&s);
19 SkDebugf(" subset: %d, %d, %d, %d", s.fLeft, s.fTop, s.fRight, s.fBottom);
20 }
21 SkDebugf("\n");
22 }
23 }
24}
25} // END FIDDLE