blob: 6b1b5d45bf5e80a12c25637f4df33df4d2b87c1d [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=d4b35a9d24c32c042bd1f529b8de3c0d
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Canvas_drawImageRect_4, 256, 64, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 uint32_t pixels[][2] = { { SK_ColorBLACK, SK_ColorWHITE },
8 { SK_ColorWHITE, SK_ColorBLACK } };
9 SkBitmap bitmap;
10 bitmap.installPixels(SkImageInfo::MakeN32Premul(2, 2),
11 (void*) pixels, sizeof(pixels[0]));
Mike Reeddc607e32020-12-23 11:50:36 -050012 sk_sp<SkImage> image = bitmap.asImage();
Hal Canary87515122019-03-15 14:22:51 -040013 SkPaint paint;
14 canvas->scale(4, 4);
15 for (auto alpha : { 50, 100, 150, 255 } ) {
16 paint.setAlpha(alpha);
Mike Reedb339d052021-01-28 11:20:41 -050017 canvas->drawImageRect(image, SkRect::MakeWH(2, 2), SkRect::MakeWH(8, 8),
18 SkSamplingOptions(), &paint, SkCanvas::kStrict_SrcRectConstraint);
Hal Canary87515122019-03-15 14:22:51 -040019 canvas->translate(8, 0);
20 }
21}
22} // END FIDDLE